/* --- Google Font --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

/* --- THEME VARIABLES --- */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --text-muted: #666666;
    --card-bg: #fafafa;
    --card-border: #e0e0e0;
    --link-color: #f0b429;
    --link-hover: #e6b84d;
    --accent-gold: #f0b429;
    --accent-dark-gold: #d4a853;
    --accent-purple: #9b59b6;
    --button-bg: #48bb78;
    --button-hover: #38a169;
    --xp-bg: #e6b84d;
    --xp-text: #1a202c;
    --memory-verse-bg: #423d30;
    --memory-verse-border: #ffc107;
    --memory-verse-title: #f6e05e;
    --memory-verse-text: #e2e8f0;
}

/* --- General Body Styles --- */
body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* --- Main Container --- */
.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* --- Header --- */
.church-logo {
    text-align: center;
    margin-bottom: 15px;
}

.church-logo img {
    width: 80px;
    height: auto;
}

header h1 {
    color: var(--text-color);
    font-size: 2.8em;
    margin-bottom: 20px;
}

/* --- Stats Container --- */
.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

/* --- XP Display --- */
.xp-display {
    background-color: var(--xp-bg);
    color: var(--xp-text);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.2em;
    font-weight: bold;
}

/* XP source badge */
.xp-source-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: rgba(0,0,0,0.12);
    color: var(--xp-text);
    border-radius: 12px;
    font-size: 0.7em;
    vertical-align: middle;
}
.xp-source-badge.xp-local { background: #f6ad55; } /* orange for local-only */
.xp-source-badge.xp-server { background: var(--button-bg); } /* green for server confirmed */

/* Claim banner small adjustments (desktop-friendly) */
#claim-banner button { font-weight: 700; }

/* --- Streak Display --- */
.streak-display {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--accent-gold);
}

/* --- Card Style for Sections --- */
.card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card h2 {
    color: var(--text-color);
    border-bottom: 2px solid var(--card-border);
    padding-bottom: 10px;
    margin-top: 0;
}

/* --- List Styles --- */
ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    background-color: var(--bg-color);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-gold);
    border: 1px solid var(--card-border);
    font-size: 1.1em;
}

/* --- Memory Verse Section --- */
#memory-verse {
    background-color: var(--memory-verse-bg);
    border: 2px dashed var(--memory-verse-border);
    text-align: center;
}

#memory-verse h2 {
    color: var(--memory-verse-title);
}

#memory-verse blockquote {
    font-size: 1.3em;
    font-weight: bold;
    color: var(--memory-verse-text);
    margin: 15px 0;
}

#memory-verse cite {
    font-style: normal;
    color: #777; /* This is a specific gray, can be a variable if needed elsewhere */
}

/* --- Link Styles --- */
#resources ul {
    padding-left: 0;
}

#resources li {
    border-left-color: var(--accent-dark-gold);
}

/* --- Fun Zone Styles --- */
#fun-zone li {
    border-left-color: var(--accent-purple);
}

a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    color: var(--link-hover);
}

/* --- Footer --- */
footer {
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.9em;
}

.link-button {
    background: none;
    border: none;
    color: var(--link-color);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9em;
}

/* --- Shop Container and Button --- */
#shop-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.shop-button {
    background-color: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: var(--xp-text);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.shop-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* --- Badges Container and Button --- */
#badges-container {
    position: absolute;
    top: 20px;
    left: 70px;
}

.badges-button {
    background-color: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: var(--xp-text);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.badges-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* --- Language Switcher Styles --- */
#language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
}

#language-switcher button {
    background-color: var(--card-border);
    border: none;
    border-radius: 8px; /* Rounded corners */
    padding: 5px 10px;
    font-weight: bold; /* Bolder text */
    color: var(--text-color);
}

/* --- Theme Switcher Styles --- */
#theme-switcher {
    position: absolute;
    top: 20px;
    right: 110px; /* Position it left of the language switcher */
}

#theme-switcher button {
    background: var(--card-border);
    border: none;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 1.2em; /* Make icon slightly larger */
    cursor: pointer;
    color: var(--text-color);
}


/* --- Shop Modal Styles --- */
.shop-item {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    gap: 15px;
    border: 1px solid var(--card-border);
}

.item-icon {
    font-size: 3em;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    margin: 0 0 8px 0;
    color: var(--text-color);
}

.item-details p {
    margin: 5px 0;
    color: var(--text-muted);
}

.item-price {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--xp-bg) !important;
}

.shop-buy-btn {
    background-color: var(--button-bg);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.shop-buy-btn:hover:not(:disabled) {
    background-color: var(--button-hover);
}

.shop-buy-btn:disabled {
    background-color: var(--card-border);
    cursor: not-allowed;
    opacity: 0.6;
}

/* --- Badges Modal Styles --- */
.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.badge-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.badge-item.unlocked {
    background-color: var(--button-bg);
    border-color: var(--button-hover);
    transform: scale(1.05);
}

.badge-item.unlocked .badge-title,
.badge-item.unlocked .badge-description,
.badge-item.unlocked .badge-icon {
    color: white;
}

.badge-item.locked {
    opacity: 0.5;
    filter: grayscale(100%);
}

.badge-icon {
    font-size: 2.5em;
    margin-bottom: 8px;
    display: block;
}

.badge-item.locked .badge-icon {
    opacity: 0.3;
}

.badge-title {
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-color);
}

.badge-description {
    font-size: 0.8em;
    color: var(--text-muted);
    line-height: 1.2;
}

.badge-progress {
    margin-top: 8px;
    font-size: 0.7em;
    color: var(--accent-gold);
    font-weight: bold;
}

/* --- Login Page Styles --- */
.login-card {
    max-width: 500px;
    margin: 40px auto;
    text-align: center;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid var(--card-border);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-container input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1em;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.login-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: bold; /* Bolder text */
    cursor: pointer;
    background: var(--button-bg);
    color: white;
}

/* --- Learning Path Styles --- */
#learning-path .unit {
    margin-bottom: 30px;
}

#learning-path .unit h3 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 20px;
}

.lessons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* This is the fix! Allows items to wrap to the next line. */
    align-items: center;
    gap: 40px;
    position: relative;
}

.lessons-row::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: var(--card-border);
    z-index: -1;
}

.lesson-node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 0.9em;
    color: var(--text-color);
    text-decoration: none;
    position: relative;
    border: 5px solid;
    transition: transform 0.2s;
    background-color: var(--bg-color);
}

.lesson-node.completed {
    /* Color is now set by JS. This class is for state tracking. */
    color: var(--text-color);
}

.lesson-node.unlocked {
    background-color: var(--accent-gold);
    border-color: var(--accent-dark-gold);
    color: var(--xp-text);
    transition: transform 0.2s, background-color 0.2s;
}
.lesson-node.unlocked:hover { transform: scale(1.1); }

.lesson-node.locked {
    background-color: var(--card-border);
    border-color: #cccccc;
    color: var(--text-muted);
    cursor: not-allowed;
}

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

.modal-content {
    position: relative;
    margin: auto;
    padding: 25px;
    width: 90%;
    max-width: 500px;
}

.close-btn {
    color: var(--text-muted);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--text-color);
    text-decoration: none;
    cursor: pointer;
}

#feedback-form textarea {
    width: 100%;
    box-sizing: border-box; /* Important */
    margin: 15px 0;
    border: 1px solid var(--card-border);
    background: var(--bg-color);
    color: var(--text-color);
}

/* --- Short Answer Quiz Styles --- */
.short-answer-container {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.short-answer-container input[type="text"] {
    flex-grow: 1;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1.1em;
}

.short-answer-container button {
    flex-shrink: 0; /* Prevent the button from shrinking */
    background: var(--button-bg);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
}

/* --- Unit Section Grouping --- */
.unit-section {
    margin-bottom: 20px;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
}

.unit-header {
    background-color: var(--card-bg);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid var(--card-border);
}

.unit-header:hover {
    background-color: #f0f0f0;
}

.unit-title {
    margin: 0;
    color: var(--text-color);
    font-size: 1.4em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.unit-stats {
    font-size: 0.9em;
    color: var(--text-muted);
    font-weight: normal;
}

.unit-toggle-btn {
    background: none;
    border: none;
    color: var(--accent-gold);
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.2s;
}

.unit-content {
    padding: 0;
    max-height: 2000px;
    transition: all 0.3s ease;
}

.unit-content.collapsed {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.lessons-row {
    padding: 20px;
    background-color: var(--bg-color);
}

/* --- Mobile Responsive Styles --- */
@media screen and (max-width: 768px) {
    body {
        padding: 10px;
    }

    /* Adjust header layout for mobile */
    header h1 {
        font-size: 1.8em;
        margin-top: 60px; /* Add space for absolute positioned buttons */
    }

    /* Stack stats vertically on mobile */
    .stats-container {
        flex-direction: column;
        gap: 10px;
    }

    .xp-display,
    .streak-display,
    .hint-tokens-display {
        font-size: 1em;
        width: 100%;
    }

    /* Improve shop/badges/language switcher positioning */
    #shop-container {
        top: 10px;
        left: 10px;
    }

    #badges-container {
        position: absolute;
        top: 10px;
        left: 60px;
    }

    .badges-button {
        background-color: #ffffff;
        border: 2px solid var(--accent-gold);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 18px;
        color: var(--xp-text);
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    #language-switcher {
        top: 10px;
        right: 10px;
        font-size: 0.85em;
    }

    #language-switcher button {
        padding: 3px 6px;
        font-size: 0.85em;
    }

    #theme-switcher {
        top: 10px;
        right: 75px; /* Position it left of the language switcher on mobile */
    }

    #theme-switcher button {
        padding: 3px 6px;
        font-size: 0.9em;
    }

    /* Reduce card padding */
    .card {
        padding: 15px;
        margin-bottom: 15px;
    }

    /* Smaller lesson nodes for mobile */
    .lesson-node {
        width: 70px;
        height: 70px;
        font-size: 0.75em;
        border-width: 3px;
    }

    .lessons-row {
        gap: 20px;
        padding: 15px;
    }

    /* Adjust connecting line */
    .lessons-row::before {
        height: 2px;
    }

    /* Unit header adjustments */
    .unit-header {
        padding: 12px 15px;
        flex-wrap: wrap;
    }

    .unit-title {
        font-size: 1.1em;
        flex: 1;
        min-width: 70%;
    }

    .unit-stats {
        font-size: 0.8em;
        flex-basis: 100%;
        margin-top: 5px;
    }

    .unit-toggle-btn {
        font-size: 1em;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95%;
        padding: 20px;
    }

    /* Shop items stack better on mobile */
    .shop-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .item-icon {
        font-size: 2.5em;
    }

    .shop-buy-btn {
        width: 100%;
        padding: 10px;
    }

    /* Badges grid adjustment */
    .badges-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .badge-item {
        padding: 12px;
    }

    .badge-icon {
        font-size: 2em;
    }

    /* Form improvements */
    .form-container input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .login-btn {
        width: 100%;
    }

    /* Short answer quiz mobile fix */
    .short-answer-container {
        flex-direction: column;
        padding: 15px;
    }

    .short-answer-container input[type="text"] {
        width: 100%;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .short-answer-container button {
        width: 100%;
    }
}

/* --- Extra small mobile devices --- */
@media screen and (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    .lesson-node {
        width: 60px;
        height: 60px;
        font-size: 0.7em;
    }

    .lessons-row {
        gap: 15px;
    }

    .unit-title {
        font-size: 1em;
    }

    .item-icon {
        font-size: 2em;
    }
}

/* --- DARK THEME STYLES --- */
body.dark-theme {
    --bg-color: #1a202c;
    --text-color: #e2e8f0;
    --text-muted: #a0aec0;
    --card-bg: #2d3748;
    --card-border: #4a5568;

    --link-color: #f6e05e; /* Brighter yellow for dark bg */
    --link-hover: #ffc107;
}

/* Specific adjustments for dark mode */
.dark-theme .unit-header {
    background-color: #283141; /* Slightly lighter than card-bg */
}

.dark-theme .unit-header:hover {
    background-color: #333d52;
}

.dark-theme .shop-button,
.dark-theme .badges-button {
    background-color: #2d3748;
    border-color: var(--accent-gold);
}

.dark-theme li,
.dark-theme .lessons-row {
    background-color: var(--bg-color); /* Match the main body background */
}

.dark-theme #language-switcher button {
    background-color: var(--card-border);
    color: var(--text-color);
}

/* ===== DAILY TASKS STYLING ===== */

/* Daily Tasks Card */
.daily-tasks-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(240, 180, 41, 0.1) 100%);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 6px 16px rgba(240, 180, 41, 0.3);
    position: relative;
    overflow: hidden;
}

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

.daily-tasks-title {
    font-size: 1.6em;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.daily-tasks-stats {
    display: flex;
    gap: 15px;
    font-size: 1em;
    font-weight: bold;
    color: var(--text-color);
}

/* Task Grid */
.task-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Task Item */
.task-item {
    background: var(--bg-color);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--card-border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.task-item:hover:not(.task-completed) {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
}

.task-item.task-completed {
    background: var(--button-bg);
    border-color: var(--button-hover);
    cursor: default;
}

.task-item.task-completed .task-icon,
.task-item.task-completed .task-name,
.task-item.task-completed .task-streak,
.task-item.task-completed .task-xp {
    color: white;
}

.task-icon {
    font-size: 3em;
    text-align: center;
    margin-bottom: 10px;
}

.task-name {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text-color);
}

.task-streak {
    text-align: center;
    font-size: 1em;
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 12px;
}

.task-item.task-completed .task-streak {
    color: white;
}

.task-xp {
    text-align: center;
    font-size: 0.9em;
    color: var(--accent-dark-gold);
    margin-bottom: 12px;
}

.task-button {
    background: var(--button-bg);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1em;
}

.task-button:hover {
    background: var(--button-hover);
}

.task-button.completed-btn {
    background: rgba(255, 255, 255, 0.3);
    cursor: default;
}

.task-button.completed-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Perfect Day Banner */
.perfect-day-banner {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    animation: pulse-banner 2s infinite;
}

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

/* Streak Fire Animation */
.streak-fire {
    display: inline-block;
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

/* Task Pulse (when ready to complete) */
.task-item.pulse-ready {
    animation: task-pulse 2s infinite;
}

@keyframes task-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(240, 180, 41, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(240, 180, 41, 0);
    }
}

/* Task Completion Modal */
.task-celebration {
    text-align: center;
    padding: 20px;
}

.celebration-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

#task-completion-message {
    font-size: 1.2em;
    margin: 20px 0;
    line-height: 1.6;
}

#task-milestone-badges {
    margin: 20px 0;
}

.milestone-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    margin: 5px;
    font-weight: bold;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#perfect-day-message {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 1.1em;
    font-weight: bold;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .task-grid {
        grid-template-columns: 1fr;
    }

    .task-item {
        padding: 15px;
    }

    .task-icon {
        font-size: 2.5em;
    }

    .daily-tasks-title {
        font-size: 1.3em;
    }

    .daily-tasks-stats {
        font-size: 0.9em;
        gap: 10px;
    }

    .task-name {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    .daily-tasks-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .daily-tasks-stats {
        flex-direction: column;
        gap: 5px;
        width: 100%;
    }

    .task-icon {
        font-size: 2em;
    }

    .perfect-day-banner {
        font-size: 1em;
        padding: 10px;
    }
}

/* Dark Theme Adjustments */
.dark-theme .task-item {
    background: var(--card-bg);
}

.dark-theme .task-name {
    color: var(--text-color);
}
