.modal-content {
    transition: all 0.3s ease-out;
}
/* ===== Dynamic Distress Popup ===== */
.distress-popup {
    background: rgba(255, 255, 255, 0.95);
    border-left: 6px solid #ef4444; /* Red warning border */
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
    transition: all 0.3s ease;
}
.dark .distress-popup {
    background: rgba(31, 41, 55, 0.95);
    border-left-color: #f87171; /* Lighter red for dark mode */
    box-shadow: 0 10px 30px rgba(248, 113, 113, 0.2);
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out forwards;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
/* ===== Sleep Pop-up Banner ===== */
.sleep-popup {
    animation: slideInUp 0.5s ease-out forwards, fadeOut 0.5s ease-in-out 14.5s forwards;
}

/* ===== Sleep Score Meter (Gauge) ===== */
.sleep-score-gauge {
    width: 200px;
    height: 100px;
    position: relative;
    overflow: hidden;
}
/* ===== Distress Warning Popup ===== */
.distress-popup {
    background: rgba(255, 255, 255, 0.95);
    border-left: 6px solid #ef4444; /* Red warning border */
    animation: slideInRight 0.5s ease-out forwards;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2);
}
.dark .distress-popup {
    background: rgba(31, 41, 55, 0.95);
}
@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== Google Fit Button ===== */
.gfit-btn {
    background: white;
    color: #444;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}
.gfit-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}
.dark .gfit-btn {
    background: #374151;
    color: #e5e7eb;
    border-color: #4b5563;
}
.dark .gfit-btn:hover {
    background: #4b5563;
}
/* ===== Chat Speaker Button ===== */
.tts-btn {
    opacity: 0; /* Hidden by default */
    transition: opacity 0.2s ease-in-out, color 0.2s ease;
    cursor: pointer;
    margin-left: 8px;
    vertical-align: middle;
}
/* Show button when hovering over the message bubble */
.chat-message-container:hover .tts-btn {
    opacity: 1;
}
/* Pulse animation when speaking */
.tts-btn.speaking {
    opacity: 1;
    color: #4f46e5; /* indigo-600 */
    animation: pulse-speak 1.5s infinite;
}
.dark .tts-btn.speaking {
    color: #818cf8; /* indigo-400 */
}

@keyframes pulse-speak {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}
/* ===== Reminder Card ===== */
#reminder-list {
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #cbd5e1 #f1f5f9; /* Firefox */
}
#reminder-list::-webkit-scrollbar {
    width: 6px;
}
#reminder-list::-webkit-scrollbar-track {
    background: #f1f5f9; /* gray-100 */
    border-radius: 3px;
}
#reminder-list::-webkit-scrollbar-thumb {
    background-color: #cbd5e1; /* gray-300 */
    border-radius: 3px;
}
.dark #reminder-list {
    scrollbar-color: #4b5563 #1f2937; /* Firefox */
}
.dark #reminder-list::-webkit-scrollbar-track {
    background: #1f2937; /* gray-800 */
}
.dark #reminder-list::-webkit-scrollbar-thumb {
    background-color: #4b5563; /* gray-600 */
}

/* Add Reminder Modal adjustments if needed */
/* (Uses standard modal styles) */
/* Custom Day Checkboxes for Reminders */
#custom-days-container input[type="checkbox"]:checked + label {
    /* Styles are applied via Tailwind peer-checked utilities */
}
/* Reminder Notification Pop-up */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
#reminder-notification-modal .animate-bounce {
    animation: bounce 1s ease-in-out infinite;
}
.sleep-score-gauge-bg {
    width: 200px;
    height: 100px;
    border-radius: 100px 100px 0 0;
    background-color: #e5e7eb; /* gray-200 */
    position: absolute;
    top: 0;
    left: 0;
}
.dark .sleep-score-gauge-bg {
    background-color: #374151; /* gray-700 */
}

.sleep-score-gauge-fill {
    width: 200px;
    height: 100px;
    border-radius: 100px 100px 0 0;
    background-color: #22c55e; /* green-500 */
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 50% 100%;
    transform: rotate(0deg);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s ease;
}

.sleep-score-gauge-cover {
    width: 160px;
    height: 80px;
    border-radius: 100px 100px 0 0;
    background-color: hsl(var(--card));
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sleep-score-gauge-value {
    font-size: 2.25rem; /* 36px */
    font-weight: 800;
    line-height: 1;
    transition: color 0.5s ease;
}
/* ===== Dynamic Mood Backgrounds ===== */
@keyframes happy-gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes sad-gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.theme-bg {
    background-size: 200% 200%;
    transition: background 1.5s ease-in-out;
}

/* Default (Neutral) */
/* Default (Neutral) - Deep Grey/Black */
/* Default (Neutral) - Deep Space Blue/Black */
/* Default (Neutral) - Deep Space Blue/Black */
.theme-bg,
.theme-bg[data-mood-theme="neutral"] {
    background-color: #000000;
    background-image: linear-gradient(135deg, #000000 0%, #111827 50%, #1e1b4b 100%);
    animation: sad-gradient-animation 30s ease infinite;
}
.dark .theme-bg,
.dark .theme-bg[data-mood-theme="neutral"] {
    background-color: #000000;
    background-image: linear-gradient(135deg, #000000 0%, #111827 50%, #1e1b4b 100%);
    animation: sad-gradient-animation 30s ease infinite;
}

/* Happy - Black + Rich Pink */
.theme-bg[data-mood-theme="happy"] {
    background-color: #000000;
    background-image: linear-gradient(120deg, #000000 0%, #1f2937 30%, #9d174d 70%, #ec4899 100%);
    animation: happy-gradient-animation 18s ease infinite;
}
.dark .theme-bg[data-mood-theme="happy"] {
    background-color: #000000;
    background-image: linear-gradient(120deg, #000000 0%, #1f2937 30%, #9d174d 70%, #ec4899 100%);
    animation: happy-gradient-animation 18s ease infinite;
}

/* Very Happy - Deep Purple & Magenta (Less Bright) */
.theme-bg[data-mood-theme="very-happy"] {
    background-color: #3b0764;
    background-image: linear-gradient(120deg, #4c1d95 0%, #701a75 30%, #9d174d 60%, #be185d 100%);
    animation: happy-gradient-animation 15s ease infinite;
}
.dark .theme-bg[data-mood-theme="very-happy"] {
    background-color: #3b0764;
    background-image: linear-gradient(120deg, #4c1d95 0%, #701a75 30%, #9d174d 60%, #be185d 100%);
    animation: happy-gradient-animation 15s ease infinite;
}

/* Sad - Deep Cool Blue (Perfect) */
.theme-bg[data-mood-theme="sad"] {
    background-color: #1e3a8a; /* blue-900 */
    background-image: linear-gradient(135deg, #111827 0%, #1e3a8a 50%, #1e40af 100%);
    animation: sad-gradient-animation 25s ease infinite;
}
.dark .theme-bg[data-mood-theme="sad"] {
    background-color: #1e3a8a; /* blue-900 */
    background-image: linear-gradient(135deg, #111827 0%, #1e3a8a 50%, #1e40af 100%);
    animation: sad-gradient-animation 25s ease infinite;
}

/* Very Sad - Black + Dark Teal */
.theme-bg[data-mood-theme="very-sad"] {
    background-color: #000000;
    background-image: linear-gradient(135deg, #000000 0%, #111827 40%, #134e4a 100%);
    animation: sad-gradient-animation 30s ease infinite;
}
.dark .theme-bg[data-mood-theme="very-sad"] {
    background-color: #000000;
    background-image: linear-gradient(135deg, #000000 0%, #111827 40%, #134e4a 100%);
    animation: sad-gradient-animation 30s ease infinite;
}
/* ==/* ===== Feeling Wheel ===== */
/* ===== Mood Grid ===== */
.mood-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem; /* 12px */
    margin-top: 1.5rem; /* 24px */
}

.mood-grid-button {
    background-color: var(--slice-bg);
    color: var(--slice-text);
    border-radius: 1.5rem; /* 24px */
    padding: 1rem 0.5rem; /* 16px 8px */
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem; /* 14px */
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.mood-grid-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mood-grid-button .emoji {
    font-size: 2rem; /* 32px */
    line-height: 1;
}
/* ===== Badge Notification ===== */
.badge-notification {
    background: linear-gradient(135deg, #6366f1, #a855f7); /* Indigo to Purple */
    color: white;
    font-weight: 600;
    animation: bounceIn 0.5s ease-out forwards, fadeOut 0.5s ease-in-out 3.5s forwards;
}

@keyframes bounceIn {
  0% { transform: translateY(100%) scale(0.8); opacity: 0; }
  60% { transform: translateY(-10%) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}


/* ===== Site Tour ===== */
.tour-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}
.tour-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.tour-step {
    position: absolute;
    background-color: hsl(var(--card)); /* Use card background */
    color: hsl(var(--card-foreground));
    padding: 1.5rem; /* 24px */
    border-radius: 1.5rem; /* 24px */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 350px;
    z-index: 101;
    border: 1px solid hsl(var(--border)); /* Use border color */
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.tour-step.visible {
    opacity: 1;
    transform: scale(1);
}

.tour-highlight {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.8), 0 0 0 10px rgba(99, 102, 241, 0.3);
    border-radius: 1.5rem; /* Match card radius */
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 102 !important; /* Ensure highlight is above overlay */
}

/* Ensure highlighted elements are clickable */
.tour-highlight > * {
    pointer-events: auto !important;
}


/* ===== Badge Notification ===== */
.badge-notification {
    background: linear-gradient(135deg, #6366f1, #a855f7); /* Indigo to Purple */
    color: white;
    font-weight: 600;
    animation: bounceIn 0.5s ease-out forwards, fadeOut 0.5s ease-in-out 3.5s forwards;
}

@keyframes bounceIn {
  0% { transform: translateY(100%) scale(0.8); opacity: 0; }
  60% { transform: translateY(-10%) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}


.sub-mood-wheel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: hsla(var(--card), 0.9);
    backdrop-filter: blur(100px);
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2.5rem;
    /* Animation */
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
}
.sub-mood-wheel.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}
.sub-mood-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 1rem;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    border: 2px solid hsl(var(--card));
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.2s ease;
}
.sub-mood-btn:hover {
    background: var(--slice-bg);
    color: var(--slice-text);
    border-color: var(--slice-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.sub-mood-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 1.5rem; /* 24px, matches the card */
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-weight: bold;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 40;
}

.sleep-score-gauge-emoji {
    font-size: 1.875rem; /* 30px */
    line-height: 1;
    margin-top: 4px;
}
.feature-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transitions for the notification */
.fixed {
    transition: all 0.3s ease-out;
}
        :root {
            --background: 240 5% 96%; /* gray-50 */
            --foreground: 240 10% 3.9%; /* gray-950 */
            --card: 0 0% 100%;
            --card-foreground: 240 10% 3.9%;
            --primary: 240 5.9% 10%;
            --primary-foreground: 0 0% 98%;
        }

        .dark {
             --background: 240 10% 3.9%;
             --foreground: 0 0% 98%;
             --card: 240 5.9% 10%;
             --card-foreground: 0 0% 98%;
             --primary: 0 0% 98%;
             --primary-foreground: 240 5.9% 10%;
        }

        body {
            font-family: 'Inter', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-color: hsl(var(--background));
            color: hsl(var(--foreground));
        }
        .fade-in { animation: fadeIn 0.5s ease-in-out; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        
        .slide-up { animation: slideUp 0.5s ease-out; }
        @keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
        
        .scale-in { animation: scaleIn 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
/* ===== Chat Starter Prompts ===== */
.chat-starters-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem; /* Add some padding */
    height: 100%; /* Make sure it fills the chat area */
    opacity: 1;
    transition: opacity 0.3s ease-out;
}
.chat-starters-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.chat-starter-button {
    background-color: hsl(var(--card)); /* Use card background */
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border)); /* Use border color */
    padding: 0.75rem 1.25rem; /* 12px 20px */
    border-radius: 1rem; /* 16px */
    margin-bottom: 0.75rem; /* 12px */
    font-size: 0.875rem; /* 14px */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-out;
    width: 100%;
    max-width: 300px; /* Limit width */
}
.dark .chat-starter-button {
     background-color: hsl(var(--card) / 0.7); /* Slightly transparent card bg */
     border-color: hsl(var(--border) / 0.5);
}

.chat-starter-button:hover {
    background-color: hsl(var(--primary) / 0.1); /* Subtle hover */
    border-color: hsl(var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 4px 10px hsl(var(--primary) / 0.1);
}
        .typing-indicator span {
            animation: pulse 1.4s infinite ease-in-out both;
        }
        .typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
        .typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
        @keyframes pulse {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1.0); }
        }
        .skeleton {
            background-color: #e5e7eb; /* gray-200 */
            border-radius: 0.5rem;
            animation: pulse-bg 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }
        .dark .skeleton { background-color: #374151; /* gray-700 */ }
        @keyframes pulse-bg {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        .music-player-track {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .note-item.deleting {
            transform: scale(0.95);
            opacity: 0;
            transition: all 0.3s ease;
        }
        .note-item {
            transition: all 0.3s ease;
        }
        .badge-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
        }
        /* Base styles for modal and popup */
        .quiz-popup {
            animation: slideInUp 0.5s ease-out forwards, fadeOut 0.5s ease-in-out 14.5s forwards;
        }
         @keyframes breathe {
        0%, 100% { transform: scale(0.5); opacity: 0.2; }
        50% { transform: scale(1); opacity: 0.7; }
    }
/* Add to your existing styles */
.fixed {
    transition: all 0.3s ease-out;
}

.transform {
    transition: all 0.3s ease-out;
}

.translate-y-10 {
    transform: translateY(2.5rem);
}

.translate-y-0 {
    transform: translateY(0);
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}
    .breathing-circle {
        animation: breathe 8s infinite ease-in-out;
    }
        .modal-overlay {
            background-color: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s ease-out;
        }
        .modal-content {
            animation: scaleIn 0.3s ease-out;
        }
        
        @keyframes slideInUp {
            from { transform: translateY(100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        
        /* Custom radio buttons */
        .custom-radio input[type="radio"] {
            display: none;
        }
        .custom-radio label {
            transition: all 0.2s ease-in-out;
        }
        .custom-radio input[type="radio"]:checked + label {
            border-color: #4f46e5; /* indigo-600 */
            background-color: #e0e7ff; /* indigo-100 */
            color: #312e81; /* indigo-900 */
            font-weight: 600;
        }
        .dark .custom-radio input[type="radio"]:checked + label {
            border-color: #a78bfa; /* violet-400 */
            background-color: #4338ca; /* indigo-700 */
            color: #ffffff;
            font-weight: 600;
        }
        /* ===== Dark Mode Chart Fixes ===== */
/* ===== Evening Check-in Banner ===== */
.evening-popup {
    animation: slideInUp 0.5s ease-out forwards, fadeOut 0.5s ease-in-out 14.5s forwards;
}

/* ===== Evening Questionnaire Modal ===== */
.day-rating-modal .question-step {
    display: none; /* Hide all steps by default */
    animation: fadeIn 0.4s ease-out;
}
.day-rating-modal .question-step.active {
    display: block; /* Show only active step */
}

/* Custom slider styles */
.rating-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background-color: #e5e7eb; /* gray-200 */
    border-radius: 4px;
    outline: none;
    transition: background-color 0.2s ease;
}
.dark .rating-slider {
    background-color: #374151; /* gray-700 */
}
.rating-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background-color: #4f46e5; /* indigo-600 */
    border-radius: 50%;
    border: 4px solid #fff; /* white */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.dark .rating-slider::-webkit-slider-thumb {
    border-color: #1f2937; /* gray-800 */
}
.rating-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background-color: #4f46e5;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.rating-slider::-webkit-slider-thumb:active {
    transform: scale(1.1);
}
.rating-slider::-moz-range-thumb:active {
    transform: scale(1.1);
}

.rating-emoji {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Stepper */
.stepper-dot {
    width: 10px;
    height: 10px;
    background-color: #d1d5db; /* gray-300 */
    border-radius: 50%;
    transition: all 0.3s ease;
}
.dark .stepper-dot {
    background-color: #4b5563; /* gray-600 */
}
.stepper-dot.active {
    background-color: #4f46e5; /* indigo-600 */
    transform: scale(1.25);
}

/* ===== Weekly Report Modal ===== */
#weekly-report-modal .modal-content {
    background: #f9fafb; /* light bg */
}
.dark #weekly-report-modal .modal-content {
    background: #030712; /* v-dark bg */
}

.report-section {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}
.dark .report-section {
    background-color: #111827; /* gray-900 */
    border-color: #374151; /* gray-700 */
}

/* D3 Chart Styles */
.weekly-chart .domain {
    stroke: #6b7280; /* gray-500 */
}
.weekly-chart .tick line {
    stroke: #d1d5db; /* gray-300 */
    stroke-dasharray: 2,2;
}
.dark .weekly-chart .domain,
.dark .weekly-chart .tick line {
    stroke: #4b5563; /* gray-600 */
}
.weekly-chart .tick text {
    fill: #6b7280; /* gray-500 */
    font-size: 12px;
}
.dark .weekly-chart .tick text {
    fill: #9ca3af; /* gray-400 */
}
.weekly-chart .mood-line {
    fill: none;
    stroke: #4f46e5; /* indigo-600 */
    stroke-width: 3px;
}
.weekly-chart .mood-area {
    opacity: 0.1;
}
.weekly-chart .mood-dot {
    stroke: #4f46e5;
    stroke-width: 2px;
    fill: #ffffff;
}
.dark .weekly-chart .mood-dot {
    fill: #111827;
}

.radar-chart .grid-line {
    stroke: #e5e7eb; /* gray-200 */
    stroke-width: 1px;
}
.dark .radar-chart .grid-line {
    stroke: #374151; /* gray-700 */
}
.radar-chart .axis-label {
    font-size: 11px;
    fill: #374151; /* gray-700 */
}
.dark .radar-chart .axis-label {
    fill: #d1d5db; /* gray-300 */
}
.radar-chart .radar-area {
    fill: #4f46e5; /* indigo-600 */
    fill-opacity: 0.2;
    stroke: #4f46e5;
    stroke-width: 2px;
}
.radar-chart .radar-point {
    fill: #4f46e5;
    stroke: #ffffff;
    stroke-width: 1px;
}
.dark .radar-chart .radar-point {
    stroke: #111827;
}
/* ===== Dark Mode Chart Fixes ===== */


