/* Chatbot window (always visible inside iframe) */
#chatbot-container {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
}

#chat-header {
    background: #4b7bec;
    padding: 12px;
    color: white;
    text-align: center;
    font-weight: bold;
}

#chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #f6f9ff;
}

.user-msg, .bot-msg {
    max-width: 80%;
    margin: 6px 0;
    padding: 8px 12px;
    border-radius: 10px;
}

.user-msg { background: #dfe6e9; margin-left:auto; }
.bot-msg { background: #74b9ff; }

#typing {
    font-size: 12px;
    color: #555;
    display: none;
}

#chat-input-area {
    display: flex;
    border-top: 1px solid #ccc;
}

#chat-input {
    flex: 1;
    border:none;
    padding:10px;
    outline:none;
}

#send-btn {
    background:#4b7bec;
    color:white;
    border:none;
    padding:10px 15px;
    cursor:pointer;
}
