/*
Theme Name: Samurrai Child
Template: twentytwentyfive
Version: 1.0
Author: Duane & Sam
*/

samurrai-chat div {
    margin-bottom: 1rem;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

div#chat-log {
    height: 400px; 
    overflow-y: auto; 
    border: 1px solid #aaa; 
    padding: 0.5rem; 
    background: #f9f9f9; 
    border-radius: 4px;
} 

.samurrai-response {
    margin-bottom: 1.2rem;
    padding: 0.75rem;
    background-color: #1e1e1e;
    color: #eee;
    border-radius: 15px;
    line-height: 1.6;
    white-space: normal;
}

div#samurrai-anon-banner {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #444;
    color: #ccc;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    z-index: 9999;
    display: none;
}
button#samurrai-ask-btn {
    padding: 0.5rem 1rem;
    max-width: 20%; 
    float: left;
    border-radius: 4px;
}

textarea#samurrai-prompt {
    padding:.3rem;
    border-radius: 6px;

}

div#samurrai-chat {
    margin-top: 2rem; 
    padding: 1rem; 
    border: 2px solid #ccc; 
    border-radius: 20px; 
    display: flex; 
    flex-direction: column; 
    gap: 1rem;
}

@media only screen and (max-width: 768px) {
  .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    min-width: 90%;
  }
  button#samurrai-ask-btn {
    min-width: 70px;
  }	


}