/* Dark Theme for AI Multilingual Chat */

/* Admin Panel Dark Theme */
body.aic-dark-theme #aic-admin-chat-container {
    background: #1a1a1a00;
}

body.aic-dark-theme .aic-conversations-list,
body.aic-dark-theme .aic-chat-area {
    background: #2d2d2d;
    color: #e0e0e0;
}

body.aic-dark-theme .aic-conversation-item {
    border-bottom-color: #3a3a3a;
    color: #e0e0e0;
}

body.aic-dark-theme .aic-conversation-item:hover {
    background: #3a3a3a;
}

body.aic-dark-theme .aic-conversation-item.active {
    background: #1e3a5f;
    border-left-color: #4a90e2;
}

body.aic-dark-theme .aic-conversation-preview {
    color: #999;
}

body.aic-dark-theme #aic_messages_container {
    background: #1a1a1a;
}

body.aic-dark-theme #aic_admin_message_input {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: #444;
}

body.aic-dark-theme #aic_admin_message_input::placeholder {
    color: #777;
}

body.aic-dark-theme .button-primary {
    background: #4a90e2 !important;
    border-color: #4a90e2 !important;
}

body.aic-dark-theme .button-primary:hover {
    background: #357abd !important;
    border-color: #357abd !important;
}

/* Frontend Chat Widget Dark Theme */
body.aic-dark-theme #aic-chat-widget .aic-chat-window {
    background: #2d2d2d;
    color: #e0e0e0;
}

body.aic-dark-theme #aic-chat-widget .aic-chat-header {
    background: #0588cf;
}

body.aic-dark-theme #aic-chat-widget .aic-chat-messages {
    background: #1a1a1a00;
}

body.aic-dark-theme #aic-chat-widget .aic-message.admin {
    /*background: #3a3a3a00;*/
    color: #e0e0e0;
}

body.aic-dark-theme #aic-chat-widget .aic-message.user {
    /*background: #4a91e200;*/
    color: white;
}

body.aic-dark-theme #aic-chat-widget .aic-message-input {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: #444;
}

body.aic-dark-theme #aic-chat-widget .aic-message-input::placeholder {
    color: #777;
}

body.aic-dark-theme #aic-chat-widget .aic-input {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: #444;
}

body.aic-dark-theme #aic-chat-widget .aic-button {
    background: #4a90e2;
    color: white;
}

body.aic-dark-theme #aic-chat-widget .aic-button:hover {
    background: #357abd;
}

body.aic-dark-theme #aic-chat-widget .aic-welcome-screen {
    background: #1a1a1a;
}

/* Scrollbar dark theme */
body.aic-dark-theme ::-webkit-scrollbar-track {
    background: #1a1a1a;
}

body.aic-dark-theme ::-webkit-scrollbar-thumb {
    background: #4a4a4a;
}

body.aic-dark-theme ::-webkit-scrollbar-thumb:hover {
    background: #555;
}