/* Modern AI Chat Widget Styles */
.modern-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: 'Futura PT', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Chat Toggle Button */
.chat-toggle-btn {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #03FBFE 0%, #0891b2 50%, #0369a1 100%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 32px rgba(3, 251, 254, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.chat-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-toggle-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(3, 251, 254, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

.chat-toggle-btn:hover::before {
    opacity: 1;
}

.chat-toggle-btn:active {
    transform: translateY(0) scale(0.98);
}

.chat-toggle-icon {
    position: relative;
    width: 28px;
    height: 28px;
}

.chat-toggle-icon svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-toggle-icon .close-icon {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.chat-window.active ~ .chat-toggle-btn .chat-toggle-icon .chat-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.chat-window.active ~ .chat-toggle-btn .chat-toggle-icon .close-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Notification Badge */
.chat-notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: #ef4444;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 3px solid #ffffff;
    animation: pulse-badge 2s infinite;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-notification-badge.show {
    opacity: 1;
    transform: scale(1);
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Chat Window */
.chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 750px;
    height: 700px;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(calc(100% + 100px));
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: none;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(20px);
}

.chat-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #03FBFE 50%, transparent 100%);
}

.chat-action-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.chat-action-btn:hover {
    background: rgba(3, 251, 254, 0.2);
    color: #03FBFE;
    transform: scale(1.05);
}

.chat-action-btn svg {
    width: 18px;
    height: 18px;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.avatar-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #03FBFE 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.avatar-gradient svg {
    width: 24px;
    height: 24px;
}

.chat-header-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.chat-status {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-header-actions {
    display: flex;
    gap: 8px;
}

.chat-minimize-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.chat-minimize-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.chat-minimize-btn svg {
    width: 16px;
    height: 16px;
}

/* Messages Container */
.chat-messages-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #0a0e1a;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    height: 100%;
    overflow-y: auto;
    padding: 24px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #0a0e1a;
    position: relative;
    z-index: 1;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Message Wrapper */
.message-wrapper {
    display: flex;
    gap: 12px;
    max-width: 100%;
    animation: messageSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.message-wrapper.user-message {
    flex-direction: row-reverse;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.message-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.user-message .message-content {
    align-items: flex-end;
}

/* Message Bubbles */
.message-bubble {
    padding: 12px 16px !important;
    border-radius: 18px !important;
    max-width: 260px !important;
    word-wrap: break-word;
    position: relative;
    line-height: 1.4 !important;
    display: inline-block !important;
    width: fit-content !important;
    min-width: 60px !important;
}

.message-bubble.welcome-bubble {
    max-width: 460px !important;
    width: 460px !important;
    padding: 16px 20px !important;
    margin-bottom: 12px !important;
    border-radius: 12px !important;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.message-wrapper.welcome-message {
    margin-bottom: 0 !important;
    position: relative;
    background: #0a0e1a;
    z-index: 1;
    padding-bottom: 0;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.message-wrapper.welcome-message::-webkit-scrollbar {
    width: 3px;
}

.message-wrapper.welcome-message::-webkit-scrollbar-track {
    background: transparent;
}

.message-wrapper.welcome-message::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.message-wrapper.welcome-message::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.message-wrapper.welcome-message .message-content {
    width: 100%;
    max-width: 100%;
}

.ai-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.user-bubble {
    background: linear-gradient(135deg, #03FBFE 0%, #0891b2 100%);
    color: #ffffff;
    border-top-right-radius: 8px;
}

.message-bubble p {
    margin: 0 0 8px 0;
    font-size: 14px;
}

.message-bubble p:last-child {
    margin-bottom: 0;
}

/* Message Buttons (from AI responses) */
.message-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.message-link-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #03FBFE 0%, #0891b2 100%);
    color: #0a0e1a;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(3, 251, 254, 0.3);
}

.message-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 251, 254, 0.5);
}

/* Message Actions - Only for user messages */
.message-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.message-wrapper.user-message:hover .message-actions {
    opacity: 1;
}

/* Hide message actions on AI messages */
.message-wrapper.ai-message .message-actions {
    display: none;
}

.message-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.message-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.welcome-features {
    margin: 12px 0;
    padding-left: 0;
    list-style: none;
}

.welcome-features li {
    padding: 4px 0;
    font-size: 14px;
    opacity: 0.9;
}

.message-time {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
    padding: 0 4px;
}

.user-message .message-time {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

/* Typing Indicator */
.typing-input-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
}

.typing-indicator span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #03FBFE;
    animation: typing 1.4s infinite ease-in-out;
    box-shadow: 0 0 8px rgba(3, 251, 254, 0.5);
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% {
        transform: scale(0.8) translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: scale(1.2) translateY(-4px);
        opacity: 1;
    }
}

.typing-indicator .message-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    display: flex;
    gap: 4px;
    align-items: center;
}

/* Welcome Message Enhancements */
.welcome-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.wave-emoji {
    font-size: 20px;
    animation: wave 0.6s ease-in-out;
}

.welcome-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #03fbfe;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-10deg); }
}

.welcome-bubble p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.ai-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 10px 0 0 0;
    width: 100%;
    max-width: 100%;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    background: rgba(3, 251, 254, 0.1);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.capability-icon {
    font-size: 16px;
}

/* Modern Suggestion Cards */
.chat-suggestions {
    padding: 20px 24px;
    padding-top: 10px;
    background: rgba(10, 14, 26, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    overflow-y: auto;
    flex: 1;
    box-sizing: border-box;
    margin-bottom: 0;
}

.chat-suggestions::-webkit-scrollbar {
    width: 4px;
}

.chat-suggestions::-webkit-scrollbar-track {
    background: transparent;
}

.chat-suggestions::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.chat-suggestions::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.suggestions-header {
    text-align: center;
    margin-bottom: 20px;
}

.suggestions-header h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.suggestions-header p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.suggestion-category {
    margin-bottom: 20px;
}

.suggestion-category h6 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 4px;
}

.suggestion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    max-width: 100%;
    overflow: hidden;
}

.suggestion-card {
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    transition: all 0.2s ease;
    text-align: center;
    min-height: 85px;
    position: relative;
    overflow: hidden;
    word-wrap: break-word;
}

.suggestion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 251, 254, 0.05) 0%, rgba(8, 145, 178, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.suggestion-card:hover::before {
    opacity: 1;
}

.suggestion-card:hover {
    border-color: #03FBFE;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(3, 251, 254, 0.15);
}

.card-icon {
    font-size: 20px;
    z-index: 1;
    position: relative;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
    position: relative;
}

.card-title {
    font-weight: 600;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 2px;
}

.card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Chat Input Area */
.chat-input-area {
    background: #1a1f35;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
}

.chat-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-input-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 16px;
    transition: all 0.2s ease;
    min-height: 52px;
    position: relative;
}

.chat-input-container:focus-within {
    border-color: #03FBFE;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(3, 251, 254, 0.1);
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    resize: none;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    min-height: 20px;
    max-height: 120px;
    padding-right: 10px;
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.input-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}

.input-action-btn {
    width: 32px !important;
    height: 32px !important;
    border: none !important;
    background: rgba(3, 251, 254, 0.1) !important;
    color: #03FBFE !important;
    cursor: pointer !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    backdrop-filter: blur(10px) !important;
    flex-shrink: 0 !important;
}

.input-action-btn:hover {
    background: rgba(3, 251, 254, 0.2);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(3, 251, 254, 0.2);
}

.input-action-btn:active {
    transform: scale(0.95);
}

.input-action-btn svg {
    width: 16px;
    height: 16px;
}

.input-action-btn::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    margin-bottom: 4px;
}

.input-action-btn:hover::after {
    opacity: 1;
}

.send-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, #03FBFE 0%, #0891b2 100%);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
    flex-shrink: 0;
    margin-left: 4px;
}

.send-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(3, 251, 254, 0.3);
}

.send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.send-btn svg {
    width: 18px;
    height: 18px;
    transition: all 0.2s ease;
}

.send-btn .loading-icon {
    position: absolute;
    opacity: 0;
}

.send-btn.loading .send-icon {
    opacity: 0;
}

.send-btn.loading .loading-icon {
    opacity: 1;
}

.chat-input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.character-count {
    font-variant-numeric: tabular-nums;
}

.chat-powered-by {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) and (min-width: 769px) {
    .modern-chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-window {
        width: 520px;
        height: 600px;
    }
    
    .message-bubble {
        max-width: 320px;
    }
    
    .chat-toggle-btn {
        position: fixed;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 768px) {
    .modern-chat-widget {
        bottom: 16px;
        right: 16px;
        left: 16px;
        max-width: calc(100vw - 32px);
    }
    
    .chat-window {
        max-height: calc(100vh - 120px);
        overflow: hidden;
    }
    
    .chat-messages-container {
        max-height: calc(100vh - 280px);
    }
    
    .chat-toggle-btn {
        width: 56px;
        height: 56px;
        position: fixed;
        right: 16px;
        bottom: 16px;
        left: auto;
    }
    
    .suggestion-cards {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 6px;
    }
    
    .chat-suggestions {
        padding: 16px 20px;
    }
    
    .chat-window {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(100%);
    }
    
    .chat-window.active {
        transform: translateY(0);
    }
    
    .chat-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .quick-action-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .chat-header {
        padding: 16px 20px;
    }
    
    .chat-messages {
        padding: 16px 20px;
    }
    
    .chat-input-area {
        padding: 16px 20px;
    }
    
    .message-bubble {
        max-width: 240px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .chat-window {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .chat-messages-container {
        background: #111827;
    }
    
    .ai-bubble {
        background: #374151;
        color: #f9fafb;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .chat-quick-actions {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .quick-action-btn {
        background: #374151;
        border-color: rgba(255, 255, 255, 0.1);
        color: #f9fafb;
    }
    
    .quick-action-btn:hover {
        background: #4b5563;
        border-color: #03FBFE;
    }
    
    .chat-input-area {
        background: #1f2937;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .chat-input-container {
        background: #374151;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .chat-input-container:focus-within {
        background: #4b5563;
    }
    
    .chat-input {
        color: #f9fafb;
    }
    
    .chat-input::placeholder {
        color: #9ca3af;
    }
}
