form.post-password-form {
    margin: 50px auto;
    background: #f5f5f5;
    padding: 30px;
    box-shadow: 1px 3px 5px #ccc;
    text-align: center;
}
form.post-password-form input {
    padding:8px;
}
form.post-password-form input[type="submit"]{
    background-color: #333;
    border:none;
    color:#fff;
}
.page-id-11 .wp-site-blocks {
    padding: 0 !important;
}
body.chatbot {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
}
.chatbot {
    display: flex;
    width:100%;
}
.chatbot .sidebar {
    width: 250px;
    background: #B2F0F4;
    padding: 20px;
    height: 92vh;
    border-right: 1px solid #ccc;
    overflow-y: auto;
}
 .chatbot .sidebar h3 {
    margin: 0 0 20px 0;
    color: #2B3345;
    font-weight: bold;
    font-size:22px
}
.chatbot .history-item {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
    color: #2B3345;
    text-decoration: none;
}
.chatbot .history-item:hover {
    background: #e0e0e0;
}
.chat-container {
    flex: 1;
    position: relative;
    height: 96vh;
    display: flex;
    flex-direction: column;
}
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2% 5%;
    background: #fff;

    scroll-behavior: smooth;
}
.chat-messages li {
    padding:10px 0 10px 40px;
}
.chat-messages li > p {
    display: inline;
}
.message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    max-width: 80%;
}
.chatbot .user {
    background: rgba(178,240,244,0.5);
    color: #2B3345;
    margin-left: auto;
    border-radius: 12px;
}
.chatbot .bot {
    background-color: #fff;
    color: #2B3345;
    margin-right: auto;
}
.chatbot .bot:first-of-type{
    background-color: #fff;
    text-align: center;
    max-width:100%;
    font-weight: bold;
}
.chatbot .chat-input {
    padding: 2% 5% 20px;
    display: flex;
    background: #fff;
}
.chatbot .chat-input textarea,
.chatbot .chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 15px;
    margin-right: 10px;
    box-shadow: 1px 3px 5px #ccc;
    font-family:inherit

}
.chat-input button {
    padding: 10px 20px;
    background: #B2F0F4;
    color: #2B3345;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.chat-input button:hover {
    background: #B2F0F4;
}.copy-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
    color: #666;
}
.message:hover .copy-btn {
    display: inline-block;
}
.copy-tooltip {
    position: absolute;
    top: -25px;
    right: 10px;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    z-index: 10;
}


.thinking {
    background: #e9ecef;
    color: #666;
    font-style: italic;
}
.thinking span::after {
    content: '...';
    animation: dots 1.5s steps(5, end) infinite;
}
@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80%, 100% { content: ''; }
}