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

:root {
    --primary: #e50914;
    --secondary: #fbbc05;
    --background: #141414;
    --text: #e5e5e5;
    --accent: #34a853;
    --white: #fff;
    --gray: #2f2f2f;
    --dark-bg: #000;
    --card-bg: #1f1f1f;
}

/* Light mode variables */
[data-theme="light"] {
    --primary: #d32f2f;
    --secondary: #f9a825;
    --background: #f5f5f5;
    --text: #212121;
    --accent: #388e3c;
    --white: #fff;
    --gray: #e0e0e0;
    --dark-bg: #fafafa;
    --card-bg: #ffffff;
}

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

body {
    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ensure all headings have proper contrast */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

/* Preserve button and link colors */
button, .btn, .btn-primary, .btn-secondary, .btn-tertiary, .btn-link,
a.btn, a.cta-btn, .flipbook-actions a, .post-actions a {
    color: inherit !important;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

header.hero {
    background: linear-gradient(120deg, var(--primary) 60%, var(--secondary) 100%);
    color: var(--white);
    padding: 5rem 0 3rem 0;
    text-align: center;
}

.brand-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    margin: 1rem 0 2rem 0;
    color: var(--white);
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.2s;
    margin-top: 1.5rem;
}

.cta-btn:hover {
    background: var(--primary);
}

.cta-btn.secondary {
    background: var(--secondary);
    color: var(--text);
}

section.about {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(26, 115, 232, 0.07);
    margin-top: -3rem;
    margin-bottom: 2rem;
    padding: 2.5rem 0;
}

[data-theme="light"] section.about {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.12);
}

section.academy {
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    margin-bottom: 2rem;
    padding: 2.5rem 0;
    text-align: center;
}

section.cta {
    background: var(--secondary);
    color: var(--text);
    border-radius: 16px;
    margin-bottom: 2rem;
    padding: 2.5rem 0;
    text-align: center;
}

footer {
    background: var(--dark-bg) !important;
    color: #808080 !important;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1rem;
    border-radius: 0;
    margin-top: 4rem;
}

[data-theme="light"] footer {
    background: #fafafa !important;
    color: #666666 !important;
    border-top: 1px solid #e0e0e0;
}

.navbar {
    background: rgba(20, 20, 20, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.1);
    padding: 1rem 0;
    margin-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #e50914 !important;
    text-decoration: none;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    color: #e5e5e5 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #fff !important;
}

.theme-toggle {
    background: none;
    border: none;
    color: #e5e5e5;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.3rem 0.5rem;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: rotate(20deg);
}

[data-theme="light"] .theme-toggle {
    color: #212121;
}

[data-theme="light"] .nav-links a {
    color: #212121 !important;
}

[data-theme="light"] .nav-links a:hover {
    color: #d32f2f !important;
}

[data-theme="light"] .nav-brand {
    color: #d32f2f !important;
}

.main-content {
    min-height: 70vh;
}

.form-container {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    color: var(--text);
}
.form-container h2 {
    margin-bottom: 1.5rem;
}
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--gray);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    background: #2f2f2f;
    color: var(--text);
}

[data-theme="light"] .form-container input,
[data-theme="light"] .form-container textarea {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    color: #212121;
}
.form-container button {
    width: 100%;
}

.dashboard-container {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem 2.5rem;
    color: var(--text);
}
.dashboard-container h2 {
    margin-bottom: 1.5rem;
}
.post-list {
    list-style: none;
    padding: 0;
}
.post-item {
    background: #2f2f2f;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    border-left: 4px solid #e50914;
    transition: transform 0.2s, box-shadow 0.2s;
}

.post-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(229, 9, 20, 0.2);
}

.post-item h3 {
    margin-bottom: 0.5rem;
    margin-top: 0;
    color: #ffffff;
}

.post-item h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.post-item h3 a:hover {
    color: #e50914;
}

.post-item > span {
    color: #808080;
    font-size: 0.9rem;
}

[data-theme="light"] .post-item {
    background: #f5f5f5;
    border-left: 4px solid #d32f2f;
}

[data-theme="light"] .post-item h3 a {
    color: #212121;
}

[data-theme="light"] .post-item h3 a:hover {
    color: #d32f2f;
}

[data-theme="light"] .post-item > span {
    color: #888888;
}
.post-actions {
    margin-top: 0.7rem;
}
.post-actions a,
.post-actions button {
    margin-right: 0.7rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
    font-size: 1rem;
}
.published-label {
    color: var(--accent);
    font-weight: 700;
}
.public-blog-container {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    padding: 2rem 2.5rem;
    color: var(--text);
}
.post-content {
    margin-top: 1rem;
    color: var(--text);
    line-height: 1.8;
}
.flashes {
    list-style: none;
    margin: 1rem auto;
    max-width: 400px;
    padding: 0.5rem 1rem;
    background: #e50914;
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

/* Dashboard */
.modern-dashboard {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
}

.dashboard-header {
    margin-bottom: 2.5rem;
    text-align: left;
}

.dashboard-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.dashboard-header p {
    font-size: 1.1rem;
    color: var(--text);
}

.dashboard-section {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: #2f2f2f;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.3);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.card-subtitle {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-status .status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.published {
    background-color: rgba(52, 168, 83, 0.1);
    color: var(--accent);
}

.status-badge.draft {
    background-color: rgba(251, 188, 5, 0.15);
    color: #b58200;
}

.post-actions .btn-link {
    margin-left: 0.8rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-link.danger {
    color: #ea4335;
}

.btn-link.success {
    color: var(--accent);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: #2f2f2f;
    border-radius: 12px;
    color: var(--text);
}

.flipbook-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Flipbook Detail Page */
.modern-flipbook-page .container {
    max-width: 900px;
}

.flipbook-header {
    text-align: center;
    margin-bottom: 2rem;
}

.flipbook-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.flipbook-header p {
    font-size: 1.1rem;
    color: var(--text);
    margin-top: 0.5rem;
}

#flipbook-container {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

#flipbook {
    outline: none;
}

#flipbook .page {
    background: white;
    border-radius: 4px;
    overflow: hidden;
}

#flipbook .page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

#flipbook .hard {
    background: #4f4f4f;
}

.flipbook-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    border: 1px solid #555;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    color: var(--white);
}

[data-theme="light"] .flipbook-nav-btn {
    background: rgba(255,255,255,0.9);
    border-color: #999;
    color: #212121;
}

[data-theme="light"] .flipbook-nav-btn:hover {
    background: rgba(211, 47, 47, 0.9);
    color: var(--white);
}

#prev-page { left: -20px; }
#next-page { right: -20px; }

.flipbook-nav-btn[disabled] {
    opacity: 0.4;
    pointer-events: none;
}

.swipe-hint {
    display: none;
    text-align: center;
    color: var(--text);
    opacity: 0.6;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.share-section {
    margin-top: 2.5rem;
    text-align: center;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.share-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 800px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .profile-img {
        margin-bottom: 1.5rem;
    }
    .container {
        width: 98%;
    }
    .dashboard-container, .public-blog-container, .form-container {
        max-width: 98vw;
        padding: 1rem 0.5rem;
    }
    .nav-flex {
        flex-direction: column;
        gap: 1rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .flipbook-nav-btn {
        display: none;
    }
    .swipe-hint {
        display: block;
    }
    #flipbook-container {
        width: 100%;
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
}

.hero-section {
    background: linear-gradient(120deg, var(--primary) 60%, var(--secondary) 100%);
    color: var(--white);
    padding: 4rem 0 2rem 0;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
}
.hero-content .highlight {
    color: var(--secondary);
}
.hero-actions {
    margin-top: 2rem;
}
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0.5rem 0.5rem 0 0;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--accent);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--text);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-tertiary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-tertiary:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-link {
    background: none;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
    padding: 0;
}
.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
}
.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
}
@media (max-width: 800px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: var(--white);
        position: absolute;
        top: 60px;
        right: 20px;
        box-shadow: 0 2px 8px rgba(26, 115, 232, 0.07);
        padding: 1rem 2rem;
        border-radius: 8px;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}
.about-section {
    background: var(--white);
    padding: 3rem 0;
}
.about-grid {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.about-image .profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.12);
}
.about-content {
    flex: 1;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}
.program-grid {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}
.program-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(26, 115, 232, 0.07);
    padding: 2rem 1.5rem;
    flex: 1 1 250px;
    min-width: 250px;
    max-width: 350px;
    text-align: left;
}
.icon-gradient {
    background: linear-gradient(120deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.academy-callout {
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}
.testimonials-section {
    background: var(--background);
    padding: 3rem 0;
}
.testimonial-carousel {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.07);
    padding: 1.5rem;
    max-width: 350px;
    min-width: 250px;
}
.quote {
    font-style: italic;
    margin-bottom: 1rem;
}
.author {
    font-weight: 600;
    color: var(--primary);
}
.cta-section {
    background: var(--secondary);
    color: var(--text);
    border-radius: 16px;
    margin-bottom: 2rem;
    padding: 2.5rem 0;
    text-align: center;
}
.cta-actions {
    margin-top: 2rem;
}
.footer {
    background: var(--gray);
    color: var(--text);
    padding: 2rem 0 1rem 0;
    font-size: 1rem;
}
.footer-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-col {
    flex: 1 1 200px;
    min-width: 180px;
    margin-bottom: 1rem;
}
.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col a {
    color: var(--primary);
    text-decoration: none;
}
.footer-col a:hover {
    text-decoration: underline;
}
.social-links a {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary);
    transition: color 0.2s;
}
.social-links a:hover {
    color: var(--accent);
}
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.6;
}
@media (max-width: 900px) {
    .about-grid, .program-grid, .footer-grid, .testimonial-carousel {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .program-card, .testimonial-card, .footer-col {
        max-width: 98vw;
    }
}

/* Light mode additional styles */
[data-theme="light"] body {
    background: #f5f5f5;
    color: #212121;
}

/* Ensure all text elements have proper contrast in light mode */
[data-theme="light"] p,
[data-theme="light"] span,
[data-theme="light"] div,
[data-theme="light"] li,
[data-theme="light"] td,
[data-theme="light"] th,
[data-theme="light"] label {
    color: #212121 !important;
}

/* Override any light colored text */
[data-theme="light"] .post-item > span,
[data-theme="light"] .card-subtitle,
[data-theme="light"] .flipbook-header p {
    color: #666666 !important;
}

[data-theme="light"] .footer-bottom {
    color: #666666 !important;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] h4,
[data-theme="light"] h5,
[data-theme="light"] h6 {
    color: #212121;
}

[data-theme="light"] a {
    color: #d32f2f;
}

[data-theme="light"] .dashboard-container,
[data-theme="light"] .form-container,
[data-theme="light"] .public-blog-container {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .form-container button,
[data-theme="light"] .dashboard-container button,
[data-theme="light"] .public-blog-container button {
    background: #d32f2f;
    color: #ffffff;
}

[data-theme="light"] .form-container button:hover,
[data-theme="light"] .dashboard-container button:hover,
[data-theme="light"] .public-blog-container button:hover {
    background: #b71c1c;
}

[data-theme="light"] .flashes {
    background: #d32f2f;
}

[data-theme="light"] section.academy {
    background: linear-gradient(120deg, #d32f2f 60%, #f9a825 100%);
}

[data-theme="light"] section.cta {
    background: #f9a825;
}

[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

[data-theme="light"] button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.3);
}

[data-theme="light"] .dashboard-section {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .section-header h3 {
    color: #212121;
}

[data-theme="light"] .post-card {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

[data-theme="light"] .post-card:hover {
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.2);
}

[data-theme="light"] .card-title {
    color: #212121;
}

[data-theme="light"] .card-subtitle {
    color: #666666;
}

[data-theme="light"] .card-footer {
    border-top-color: #e0e0e0;
}

[data-theme="light"] .empty-state {
    background: #f5f5f5;
    color: #212121;
}

[data-theme="light"] .flipbook-header h2 {
    color: #212121;
}

[data-theme="light"] .flipbook-header p {
    color: #444444;
}

[data-theme="light"] #flipbook-container {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .share-section {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .share-section h4 {
    color: #212121;
}

[data-theme="light"] .about-section {
    background: #f5f5f5;
}

[data-theme="light"] .program-card {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .testimonial-card {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .testimonial-card .quote {
    color: #212121;
}

[data-theme="light"] .testimonial-card .author {
    color: #d32f2f;
}

[data-theme="light"] .footer {
    background: #e0e0e0;
    color: #212121;
}

[data-theme="light"] .footer-col h3 {
    color: #212121;
}

[data-theme="light"] .footer-col ul li {
    color: #212121;
}

[data-theme="light"] .dashboard-header h2 {
    color: #212121;
}

[data-theme="light"] .section-title {
    color: #212121;
}

[data-theme="light"] .quote {
    color: #212121;
}

[data-theme="light"] .author {
    color: #d32f2f;
}
