:root {
    /* Core Colors */
    --bg-dark: #0f0f12;
    --bg-panel: rgba(28, 28, 33, 0.65);
    --bg-input: rgba(40, 40, 45, 0.8);
    --border-light: rgba(255, 255, 255, 0.08);
    --accent: #00aaff; /* Default accent */
    --accent-glow: rgba(0, 170, 255, 0.3);
    
    /* Text */
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    
    /* Functional */
    --glass-blur: blur(20px);
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    /* Code */
    --code-bg: #1e1e24;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Ambient Background Lights */
.ambient-light {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: -1;
    animation: floatLight 10s infinite alternate;
}
.ambient-light.one { top: -100px; left: -100px; background: var(--accent); }
.ambient-light.two { bottom: -100px; right: -100px; background: #7000ff; animation-delay: 5s; }

@keyframes floatLight {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.app-container {
    display: flex;
    height: 100%;
    width: 100%;
}

/* --- Sidebar --- */
.sidebar {
    width: 280px;
    background: var(--bg-panel);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.sidebar-header { margin-bottom: 2rem; }

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.logo-icon {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--accent), #7000ff);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: white;
}

.new-chat-btn {
    width: 100%;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    transition: all 0.2s;
}
.new-chat-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.history-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.chat-history {
    flex: 1;
    overflow-y: auto;
    margin-right: -10px;
    padding-right: 10px;
}
.chat-history::-webkit-scrollbar { width: 4px; }
.chat-history::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

#chat-history-list { list-style: none; }
#chat-history-list li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
    display: flex; justify-content: space-between; align-items: center;
    border: 1px solid transparent;
}
#chat-history-list li:hover { background: rgba(255,255,255,0.05); color: var(--text-main); }
#chat-history-list li.active {
    background: rgba(0, 170, 255, 0.1);
    border-color: rgba(0, 170, 255, 0.3);
    color: var(--accent);
}
.chat-title {
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px;
}
.delete-chat-btn {
    opacity: 0; background: none; border: none; color: #ff4444; cursor: pointer; padding: 4px;
    transition: opacity 0.2s;
}
#chat-history-list li:hover .delete-chat-btn { opacity: 1; }

.sidebar-footer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}
.footer-btn {
    background: none; border: none; color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem;
    margin-bottom: 1rem; transition: color 0.2s;
}
.footer-btn:hover { color: var(--text-main); }

.user-profile {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.5rem; background: rgba(0,0,0,0.2); border-radius: var(--radius-md);
}
.avatar {
    width: 32px; height: 32px; background: #333; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-weight: bold;
}
.user-info { display: flex; flex-direction: column; font-size: 0.85rem; }
.user-info .name { font-weight: 600; }
.user-info .status { font-size: 0.7rem; color: var(--accent); }

/* --- Main Chat Interface --- */
.chat-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: radial-gradient(circle at top, rgba(255,255,255,0.02), transparent 70%);
}

.mobile-header {
    display: none;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}
.icon-btn { background: none; border: none; color: var(--text-main); font-size: 1.2rem; cursor: pointer; }

/* Messages */
.message-container {
    flex: 1;
    overflow-y: auto;
    padding: 2rem 10%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    scroll-behavior: smooth;
}
.message-container::-webkit-scrollbar { width: 6px; }
.message-container::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.welcome-screen {
    height: 100%; display: flex; align-items: center; justify-content: center;
    text-align: center; animation: fadeIn 0.5s ease;
}
.welcome-content h1 { font-size: 2.5rem; margin-bottom: 0.5rem; background: linear-gradient(to right, #fff, #aaa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.welcome-content p { color: var(--text-muted); margin-bottom: 3rem; }
.logo-large { font-size: 4rem; color: var(--accent); margin-bottom: 1.5rem; filter: drop-shadow(0 0 20px var(--accent-glow)); }

.suggestion-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 600px; margin: 0 auto;
}
.suggestion-card {
    background: var(--bg-panel); border: 1px solid var(--border-light);
    padding: 1.25rem; border-radius: var(--radius-md);
    text-align: left; cursor: pointer; color: var(--text-muted);
    display: flex; flex-direction: column; gap: 0.5rem;
    transition: all 0.2s;
}
.suggestion-card i { font-size: 1.2rem; color: var(--accent); }
.suggestion-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); color: var(--text-main); }

/* Message Bubbles */
.message {
    display: flex; gap: 1rem; max-width: 850px; margin: 0 auto; width: 100%;
    animation: slideIn 0.3s ease;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

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

.message-content {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.user-message .message-content {
    background: var(--accent);
    color: white;
    border-bottom-right-radius: 4px;
}

.bot-message .message-content {
    background: var(--bg-panel);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    border-bottom-left-radius: 4px;
}

/* Code Blocks */
pre {
    background: var(--code-bg) !important;
    border-radius: var(--radius-md);
    margin: 1rem 0;
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.code-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.5rem 1rem; background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border-light);
    font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; color: var(--text-muted);
}
.copy-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 0.8rem; }
.copy-btn:hover { color: var(--text-main); }
code { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; }

/* Input Area */
.input-wrapper-container {
    padding: 1.5rem 10%;
    background: linear-gradient(to top, var(--bg-dark) 80%, transparent);
    position: relative;
}

.floating-controls {
    position: absolute; top: -50px; right: 10%;
    display: flex; gap: 0.5rem;
}
.float-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg-panel); border: 1px solid var(--border-light);
    color: var(--text-muted); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.float-btn:hover, .float-btn.active { background: var(--accent); color: white; }

.chat-input-form {
    position: relative;
    max-width: 850px; margin: 0 auto;
}

.input-group {
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 0.5rem;
    display: flex; align-items: flex-end; gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    transition: border-color 0.2s;
}
.input-group:focus-within { border-color: var(--accent); }

textarea {
    flex: 1; background: transparent; border: none; color: var(--text-main);
    font-family: inherit; font-size: 1rem; padding: 0.75rem;
    resize: none; max-height: 200px;
}
textarea::placeholder { color: var(--text-muted); }

.attach-btn, .mic-btn, .send-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; transition: all 0.2s;
}

.attach-btn { background: transparent; color: var(--text-muted); }
.attach-btn:hover { background: rgba(255,255,255,0.1); color: var(--text-main); }

.mic-btn { background: transparent; color: var(--text-muted); }
.mic-btn:hover { color: var(--text-main); }
.mic-btn.recording { color: #ff4444; animation: pulse 1.5s infinite; }

.send-btn { background: var(--accent); color: white; }
.send-btn:hover { transform: scale(1.05); box-shadow: 0 0 10px var(--accent-glow); }

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

.attach-menu {
    position: absolute; bottom: 100%; left: 0;
    background: var(--bg-panel); border: 1px solid var(--border-light);
    border-radius: var(--radius-md); padding: 0.5rem;
    display: none; flex-direction: column; gap: 0.25rem;
    backdrop-filter: blur(15px); box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    min-width: 180px;
}
.attach-menu.show { display: flex; animation: fadeIn 0.2s; }
.attach-menu button {
    background: none; border: none; color: var(--text-main);
    padding: 0.75rem; text-align: left; cursor: pointer; border-radius: 6px;
    display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem;
}
.attach-menu button:hover { background: rgba(255,255,255,0.1); }

.attachment-preview {
    max-width: 850px; margin: 0 auto 0.5rem;
    background: rgba(255,255,255,0.05); padding: 0.5rem 1rem;
    border-radius: 8px; display: none; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: var(--accent); border: 1px solid var(--border-light);
}

.footer-text { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.75rem; }

/* Modal */
.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    display: none; align-items: center; justify-content: center; z-index: 1000;
}
.modal.active { display: flex; }
.modal-content {
    background: #1c1c21; border: 1px solid var(--border-light);
    width: 90%; max-width: 500px; border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.modal-header { display: flex; justify-content: space-between; margin-bottom: 1.5rem; }
.close-modal { background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }
.setting-item { margin-bottom: 1.5rem; }
.setting-item label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.color-picker { display: flex; gap: 1rem; }
.color-option {
    width: 30px; height: 30px; border-radius: 50%; background: var(--c);
    cursor: pointer; border: 2px solid transparent;
}
.color-option.active { border-color: white; transform: scale(1.1); }
.danger-btn { background: rgba(255, 68, 68, 0.1); color: #ff4444; border: 1px solid #ff4444; padding: 0.5rem 1rem; border-radius: 6px; cursor: pointer; width: 100%; }

/* Responsive */
@media (max-width: 768px) {
    .sidebar { position: fixed; left: -100%; height: 100%; width: 80%; }
    .sidebar.show { left: 0; }
    .mobile-header { display: flex; }
    .message-container { padding: 1rem; }
    .input-wrapper-container { padding: 1rem; }
    .floating-controls { top: -40px; right: 1rem; }
    .suggestion-grid { grid-template-columns: 1fr; }
    #sidebar-overlay.active { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 90; }
}
.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background-color: var(--accent); /* Uses your theme color */
    animation: blink 1s infinite;
    vertical-align: text-bottom;
    margin-left: 4px;
    border-radius: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/* Responsive Design Improvements */
@media (max-width: 1024px) {
    /* iPad and Tablet Styles */
    .chat-interface {
        height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .message-container {
        padding: 1.5rem 5%;
        flex: 1;
        overflow-y: auto;
        height: calc(100vh - 200px);
    }
    
    .input-wrapper-container {
        padding: 1rem 5%;
        background: linear-gradient(to top, var(--bg-dark) 95%, transparent);
        position: sticky;
        bottom: 0;
        z-index: 10;
    }
    
    .chat-input-form {
        max-width: 100%;
    }
    
    .floating-controls {
        position: absolute;
        top: -45px;
        right: 5%;
        z-index: 20;
    }
    
    /* Make sure input is always visible */
    .input-group {
        min-height: 56px;
    }
    
    textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        max-height: 150px;
    }
}

@media (max-width: 768px) {
    /* Mobile-specific improvements */
    .sidebar {
        width: 85%;
        max-width: 320px;
        left: -100%;
        height: 100%;
        position: fixed;
        z-index: 1000;
        transition: left 0.3s ease-out;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    }
    
    .sidebar.show {
        left: 0;
    }
    
    /* Sidebar overlay - only show when sidebar is open */
    #sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    #sidebar-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* Mobile header improvements */
    .mobile-header {
        display: flex;
        padding: 1rem 1.5rem;
        background: var(--bg-panel);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-light);
        z-index: 100;
        position: sticky;
        top: 0;
    }
    
    .mobile-brand {
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-main);
    }
    
    /* Message container */
    .message-container {
        padding: 1rem 1rem;
        height: calc(100vh - 160px);
    }
    
    /* Adjust message width for mobile */
    .message {
        max-width: 100%;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .user-message .message-content {
        max-width: 85%;
    }
    
    /* Welcome screen adjustments */
    .welcome-content h1 {
        font-size: 2rem;
    }
    
    .suggestion-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    /* Input area */
    .input-wrapper-container {
        padding: 1rem 1rem 1.5rem;
        background: linear-gradient(to top, var(--bg-dark) 90%, transparent);
        position: sticky;
        bottom: 0;
        z-index: 10;
    }
    
    .floating-controls {
        position: absolute;
        top: -50px;
        right: 1rem;
    }
    
    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    /* Input group improvements */
    .input-group {
        border-radius: 22px;
        min-height: 56px;
        align-items: center;
    }
    
    textarea {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.5rem 0;
        line-height: 1.4;
        max-height: 120px;
    }
    
    .attach-btn, .mic-btn, .send-btn {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    /* Footer text */
    .footer-text {
        font-size: 0.7rem;
        margin-top: 0.5rem;
        padding: 0 0.5rem;
    }
    
    /* Modal adjustments */
    .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    /* Ambient lights adjustment for mobile */
    .ambient-light {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .sidebar {
        width: 90%;
    }
    
    .message-container {
        padding: 0.75rem 0.5rem;
        height: calc(100vh - 150px);
    }
    
    .message-content {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .welcome-content h1 {
        font-size: 1.75rem;
    }
    
    .logo-large {
        font-size: 3rem;
    }
    
    .input-wrapper-container {
        padding: 0.75rem 0.75rem 1rem;
    }
    
    .floating-controls {
        top: -45px;
        right: 0.75rem;
    }
    
    .float-btn {
        width: 40px;
        height: 40px;
    }
    
    .input-group {
        min-height: 52px;
        padding: 0.5rem 0.75rem;
    }
    
    .attach-btn, .mic-btn, .send-btn {
        width: 40px;
        height: 40px;
    }
}

/* iPad Portrait/Landscape specific */
@media (min-width: 768px) and (max-width: 1024px) {
    .sidebar {
        width: 320px;
    }
    
    .message-container {
        padding: 2rem 5%;
        height: calc(100vh - 180px);
    }
    
    .input-wrapper-container {
        padding: 1.5rem 5%;
    }
    
    .floating-controls {
        top: -50px;
        right: 5%;
    }
    
    /* Suggestion grid for tablet */
    .suggestion-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

/* Prevent iOS Safari zoom on input focus */
@supports (-webkit-touch-callout: none) {
    textarea {
        font-size: 16px !important;
    }
}

/* Ensure proper viewport height on mobile */
html, body {
    height: -webkit-fill-available;
}

.app-container {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}
/* Search Toggle Button Styles */
#search-toggle-btn.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 0 15px var(--accent-glow);
    animation: pulseSearch 2s infinite;
}

#search-toggle-btn.active:hover {
    background: var(--accent);
    transform: scale(1.05);
}

@keyframes pulseSearch {
    0%, 100% { box-shadow: 0 0 15px var(--accent-glow); }
    50% { box-shadow: 0 0 25px var(--accent-glow); }
}

/* Search Status Indicator in Messages */
.search-indicator {
    display: inline-block;
    font-size: 0.8rem;
    background: rgba(0, 170, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    color: var(--accent);
    vertical-align: middle;
    border: 1px solid rgba(0, 170, 255, 0.3);
}

/* Updated suggestion cards for search-related prompts */
.suggestion-card[onclick*="today"] i,
.suggestion-card[onclick*="latest"] i,
.suggestion-card[onclick*="news"] i {
    color: #ff9900;
}

/* Enhanced floating controls for additional button */
.floating-controls {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Notification styles for search toggle */
.search-notification {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Responsive adjustments for floating controls */
@media (max-width: 768px) {
    .floating-controls {
        gap: 0.4rem;
    }
    
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-controls {
        gap: 0.3rem;
    }
    
    .float-btn {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }
}

/* Search toggle tooltip enhancement */
.float-btn[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-panel);
    color: var(--text-main);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    margin-bottom: 5px;
}
/* --- Amazing Table Styling --- */

/* Container for the table to handle overflow */
.message-content table {
    display: block;
    width: 100%;
    overflow-x: auto; /* CRITICAL: Enables horizontal scrolling */
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.25); /* Darker background for contrast */
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

/* Table Header Styling */
.message-content th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent); /* Cyan accent color */
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    white-space: nowrap; /* Keeps headers on one line */
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
}

/* Table Body Styling */
.message-content td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    white-space: nowrap; /* Prevents text from squashing */
    transition: color 0.2s;
}

/* Hover Effects */
.message-content tr:hover td {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.03);
}

/* Zebra Striping */
.message-content tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

/* Remove bottom border from last row */
.message-content tr:last-child td {
    border-bottom: none;
}

/* Custom Scrollbar for the table */
.message-content table::-webkit-scrollbar {
    height: 8px; /* Slim horizontal scrollbar */
}

.message-content table::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.message-content table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.message-content table::-webkit-scrollbar-thumb:hover {
    background: var(--accent); /* Highlights scrollbar on hover */
}
