/* Ask Krishna - Spiritual Bhagavad Gita Website Styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Spectral:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
    --primary-color: #4A90E2;      /* Serene blue */
    --secondary-color: #8E44AD;     /* Deep purple */
    --accent-color: #F39C12;        /* Golden accent */
    --peacock-blue: #005F73;        /* Peacock blue */
    --peacock-green: #0A9396;       /* Peacock green */
    --light-blue: #E8F4FD;          /* Very light blue */
    --cream: #FFF8E7;               /* Cream background */
    --text-primary: #2C3E50;        /* Dark blue-gray */
    --text-secondary: #5D6D7E;      /* Medium gray */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-color: #E1E8ED;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--light-blue) 0%, var(--cream) 100%);
    --gradient-accent: linear-gradient(45deg, var(--peacock-blue), var(--peacock-green));
}

/* Dark theme variables */
[data-theme="dark"] {
    --primary-color: #5BA3F5;      /* Lighter blue for dark mode */
    --secondary-color: #A569BD;     /* Lighter purple */
    --accent-color: #F5B942;        /* Brighter golden accent */
    --peacock-blue: #4A9CB8;        /* Lighter peacock blue */
    --peacock-green: #5CB3B6;       /* Lighter peacock green */
    --light-blue: #1A2332;          /* Dark blue background */
    --cream: #0F1419;               /* Very dark background */
    --text-primary: #E8F4FD;        /* Light text */
    --text-secondary: #B0BEC5;      /* Light gray text */
    --white: #1E2936;               /* Dark card background */
    --light-gray: #263238;          /* Darker card background */
    --border-color: #37474F;        /* Dark border */
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--light-blue) 0%, var(--cream) 100%);
    --gradient-accent: linear-gradient(45deg, var(--peacock-blue), var(--peacock-green));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Optimistic Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--gradient-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    font-weight: 400;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(138, 68, 173, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

[data-theme="dark"] .header {
    background: rgba(30, 41, 54, 0.9);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.hamburger-btn:hover {
    transform: scale(1.05);
}

.theme-toggle-btn {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow-color);
}

.theme-toggle-btn:hover {
    transform: scale(1.05);
    background: var(--light-gray);
}

[data-theme="dark"] .theme-toggle-btn {
    background: var(--light-gray);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.logo h1 {
    font-family: 'Spectral', 'Inter', serif;
    font-size: 2.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    font-weight: 600;
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.auth-section {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-photo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--peacock-blue);
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
}

.sign-out-btn {
    background: var(--text-secondary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.sign-out-btn:hover {
    background: var(--peacock-blue);
}

/* Main Content */
.main {
    flex: 1;
    padding: 40px 0;
}

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
}

.krishna-image {
    position: relative;
    margin-bottom: 20px;
}

.peacock-feather {
    font-size: 4rem;
    display: inline-block;
    animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.welcome-section h2 {
    font-family: 'Spectral', 'Inter', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.welcome-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Chat Container */
.chat-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .chat-container {
    background: rgba(30, 41, 54, 0.8);
}

/* Conversations Sidebar */
.conversations-sidebar {
    background: rgba(248, 249, 250, 0.8);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    transition: transform 0.3s ease;
}

[data-theme="dark"] .conversations-sidebar {
    background: rgba(38, 50, 56, 0.8);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.close-sidebar-btn {
    background: var(--text-secondary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-sidebar-btn:hover {
    background: var(--peacock-blue);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-header h3 {
    font-family: 'Spectral', 'Inter', serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
}

.new-conversation-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.new-conversation-btn:hover {
    transform: scale(1.05);
}

.conversations-list {
    max-height: 400px;
    overflow-y: auto;
}

.conversation-item {
    padding: 12px;
    margin-bottom: 8px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

[data-theme="dark"] .conversation-item {
    background: var(--white);
}

.conversation-item:hover {
    background: var(--light-blue);
    border-left-color: var(--peacock-blue);
}

.conversation-item.active {
    background: var(--light-blue);
    border-left-color: var(--peacock-blue);
}

.conversation-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.conversation-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Chat Main Area */
.chat-main {
    display: flex;
    flex-direction: column;
    height: 600px;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.message {
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
}

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

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.krishna-avatar {
    background: var(--gradient-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-avatar {
    background: var(--primary-color);
    color: white;
}

.message-content {
    flex: 1;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .message-content {
    background: var(--white);
}

.message.user .message-content {
    background: var(--light-blue);
}

.message.streaming .message-content {
    position: relative;
}

.message.streaming .message-content::after {
    content: '▋';
    animation: blink 1s infinite;
    color: var(--peacock-blue);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.welcome-message {
    text-align: center;
    margin-bottom: 30px;
}

.welcome-message .message-content {
    background: var(--light-blue);
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.gita-verse {
    background: var(--cream);
    border-left: 4px solid var(--accent-color);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
}

.sanskrit-verse {
    background: linear-gradient(135deg, #fff8e7, #f4f1e8);
    border-left: 4px solid var(--peacock-blue);
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-weight: 500;
}

.verse-text {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.8;
}

.sanskrit-text {
    font-size: 1.05rem;
    color: var(--peacock-blue);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.8;
}

.verse-reference {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-align: right;
}

.response-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Input Section */
.input-section {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] .input-section {
    background: rgba(30, 41, 54, 0.9);
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.input-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.button-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.audio-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mic-button, .speak-button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mic-button:hover, .speak-button:hover {
    transform: scale(1.1);
}

.mic-button:disabled, .speak-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.mic-button.recording {
    background: #e74c3c;
    animation: pulse 1.5s infinite;
}

.speak-button.speaking {
    background: #27ae60;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}

.mic-button.recording {
    animation-name: pulse-red;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

.recording-indicator, .speaking-indicator {
    position: absolute;
    font-size: 0.8rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

#questionInput {
    flex: 1;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 12px 16px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 50px;
    transition: border-color 0.3s ease;
    background: white;
    color: var(--text-primary);
}

[data-theme="dark"] #questionInput {
    background: var(--white);
}

#questionInput:focus {
    outline: none;
    border-color: var(--peacock-blue);
}

.ask-button {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
}

.ask-button:hover {
    transform: scale(1.02);
}

.ask-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0;
    color: var(--text-secondary);
    font-style: italic;
}

.copyright {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: normal;
}

.copyright a {
    color: var(--peacock-blue);
    text-decoration: none;
    font-weight: 500;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Typing Indicator */
.typing-indicator {
    opacity: 0.8;
}

.typing-animation {
    display: flex;
    align-items: center;
    gap: 10px;
    font-style: italic;
    color: var(--text-secondary);
}

.dots {
    display: flex;
    gap: 3px;
}

.dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--peacock-blue);
    animation: typing-dot 1.4s infinite ease-in-out;
}

.dots span:nth-child(1) {
    animation-delay: 0s;
}

.dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-dot {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Settings */
.settings-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    z-index: 1000;
}

.settings-btn:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-family: 'Spectral', 'Inter', serif;
    color: var(--text-primary);
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.modal-body {
    padding: 20px;
}

.setting-group {
    margin-bottom: 20px;
}

.setting-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.setting-group input {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
}

.setting-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.save-btn {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* Prevent zoom on input focus */
        -webkit-text-size-adjust: 100%;
        position: relative;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Compact Header */
    .header {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .header .container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 0.8rem;
    }
    
    .hamburger-btn {
        display: flex; /* Show on mobile */
    }
    
    .user-name {
        display: none; /* Hide user name on mobile to save space */
    }
    
    /* Hide welcome section on mobile to save space */
    .welcome-section {
        display: none;
    }
    
    /* Full-screen chat container */
    .chat-container {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
        border-radius: 0;
        height: calc(100vh - 80px); /* Full height minus header */
        max-width: 100%;
        background: white;
        box-shadow: none;
        display: flex;
        flex-direction: column;
    }

    [data-theme="dark"] .chat-container {
        background: var(--white);
    }
    
    /* Mobile sidebar as overlay */
    .conversations-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        z-index: 1000;
        transform: translateX(-100%);
        background: white;
        border-right: none;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    [data-theme="dark"] .conversations-sidebar {
        background: var(--white);
    }
    
    .conversations-sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-overlay.active {
        display: block;
    }
    
    .close-sidebar-btn {
        display: flex; /* Show on mobile */
    }
    
    /* Full-height chat area */
    .chat-main {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .chat-messages {
        flex: 1;
        padding: 15px;
        overflow-y: auto;
        scroll-behavior: smooth;
        /* Ensure good scrolling on mobile */
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        /* Ensure good readability */
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Larger, more readable messages */
    .message-content {
        padding: 12px 16px;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 5px;
    }
    
    .message-content p {
        margin-bottom: 10px;
    }
    
    /* Compact welcome message */
    .welcome-message .message-content {
        background: var(--light-blue);
        border-radius: 15px;
        margin: 0 auto 20px auto;
        max-width: 100%;
    }
    
    /* Improved input section */
    .input-section {
        padding: 12px;
        margin: 0;
        background: white;
        border-top: 1px solid var(--border-color);
    }

    [data-theme="dark"] .input-section {
        background: var(--white);
    }
    
    .input-container {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .input-row {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .audio-controls {
        align-self: center;
    }
    
    .button-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    #questionInput {
        min-height: 60px;
        border-radius: 12px;
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px;
        border: 2px solid var(--border-color);
    }
    
    .ask-button, .speak-button {
        min-height: 50px;
        border-radius: 12px;
        font-size: 16px;
        padding: 12px 24px;
    }
    
    .ask-button {
        flex: 1;
        min-width: 150px;
    }
    
    /* Larger avatars for better visibility */
    .krishna-avatar, .message-avatar {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    /* Better conversation items */
    .conversation-item {
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 12px;
    }
    
    .conversation-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    /* Hide settings button on very small screens */
    .settings-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Scrollbar Styles */
.chat-messages::-webkit-scrollbar,
.conversations-list::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track,
.conversations-list::-webkit-scrollbar-track {
    background: var(--light-gray);
}

.chat-messages::-webkit-scrollbar-thumb,
.conversations-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover,
.conversations-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ===== TEMPORARY DISABLE STYLES - Remove when service is restored ===== */
.disabled-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(2px);
    z-index: 999;
    pointer-events: all;
}

.disabled-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .disabled-banner {
    background: var(--light-gray);
    border-color: var(--accent-color);
}

.disabled-banner .disabled-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.disabled-banner h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Spectral', serif;
    font-weight: 600;
}

.disabled-banner p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.disabled-banner .disabled-decoration {
    font-size: 1.5rem;
    opacity: 0.6;
    margin-top: 10px;
}

/* Disabled state for main content */
body.app-disabled .main {
    opacity: 0.6;
    pointer-events: none;
}

body.app-disabled .ask-button,
body.app-disabled #questionInput {
    opacity: 0.5;
    cursor: not-allowed;
}
/* ===== END TEMPORARY DISABLE STYLES ===== */
