/* ===== NEWS PORTAL - MAIN STYLESHEET ===== */
:root {
    --primary: #c0392b;
    --primary-dark: #96281b;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light-bg: #f8f9fa;
    --border: #dee2e6;
    --text-muted: #6c757d;
    --white: #fff;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.14);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--primary); }
img { max-width: 100%; }

/* ===== HEADER ===== */
.top-bar {
    background: var(--secondary);
    color: #ccc;
    font-size: 12px;
    padding: 6px 0;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: #fff; }

.site-header {
    background: var(--white);
    padding: 16px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-logo {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}
.site-logo span { color: var(--secondary); }

.header-search input {
    border: 2px solid var(--border);
    border-radius: 25px 0 0 25px;
    padding: 8px 18px;
    outline: none;
    width: 260px;
    font-size: 14px;
    transition: border-color 0.2s;
}
.header-search input:focus { border-color: var(--primary); }
.header-search button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}
.header-search button:hover { background: var(--primary-dark); }

/* ===== NAVIGATION ===== */
.main-nav {
    background: var(--primary);
    position: relative;
    z-index: 500;   /* already there, just confirm it's present */
}
.main-nav > .container > ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.main-nav > .container > ul > li {
    position: relative;
}
.main-nav > .container > ul > li > a {
    display: block;
    color: #fff;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    white-space: nowrap;
}
.main-nav > .container > ul > li > a:hover,
.main-nav > .container > ul > li > a.active {
    background: rgba(0,0,0,0.2);
    color: #fff;
}

/* Dropdown */
.main-nav > .container > ul > li > ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 9999;
    border-top: 3px solid var(--primary);
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-nav > .container > ul > li:hover > ul.dropdown-menu {
    display: block;
}
.main-nav > .container > ul > li > ul.dropdown-menu > li {
    display: block;
    margin: 0;
    padding: 0;
}
.main-nav > .container > ul > li > ul.dropdown-menu > li > a {
    display: block;
    color: #333;
    background: #fff;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #eee;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.main-nav > .container > ul > li > ul.dropdown-menu > li:last-child > a {
    border-bottom: none;
}
.main-nav > .container > ul > li > ul.dropdown-menu > li > a:hover {
    background: #f8f9fa;
    color: var(--primary);
}

/* Hide by default */
.main-nav li.dropdown > .dropdown-menu {
    display: none;
}

/* Show only when active */
.main-nav li.dropdown.active > .dropdown-menu {
    display: block;
}

/* ===== BREAKING NEWS ===== */
.breaking-news {
    background: var(--secondary);
    color: #fff;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;   /* ADD THIS */
}
.breaking-label {
    background: var(--primary);
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 15px;
}
.breaking-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.breaking-ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}
.breaking-ticker-inner a {
    color: #ddd;
    font-size: 13px;
    padding: 0 30px;
}
.breaking-ticker-inner a:hover { color: #fff; }
@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== MAIN CONTENT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.main-content { padding: 30px 0; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col-8 { width: 66.666%; padding: 0 12px; }
.col-4 { width: 33.333%; padding: 0 12px; }
.col-6 { width: 50%; padding: 0 12px; }
.col-12 { width: 100%; padding: 0 12px; }

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--primary);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary);
}

/* ===== NEWS CARDS ===== */
.news-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.news-card-body { padding: 16px; }
.news-card-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.news-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    line-height: 1.4;
}
.news-card-title a:hover { color: var(--primary); }
.news-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}
.news-card-meta {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.news-card-meta i { margin-right: 4px; }

/* Featured Post */
.featured-post {
    margin-bottom: 28px;
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hero-image-wrapper,
.hero-content {
    width: 50%;
}
.hero-image-wrapper {
    overflow: hidden;
    min-height: 420px;
}
.hero-image-wrapper .hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-post-body {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.featured-post-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.featured-post-title,
.hero-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 18px;
    line-height: 1.1;
}
.hero-description {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 760px;
    margin: 0 0 28px;
    line-height: 1.8;
    padding: 5px;
}
.hero-cta {
    padding: 14px 28px;
    font-size: 0.95rem;
}
.featured-post-title a:hover { color: var(--primary); }
@media (max-width: 1024px) {
    .hero-image-wrapper,
    .hero-content {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .featured-post {
        flex-direction: column;
    }
    .hero-content {
        padding: 24px 20px;
    }
    .hero-image-wrapper {
        min-height: 280px;
    }
    .featured-post-title {
        font-size: 2rem;
    }
}

/* ===== SIDEBAR ===== */
.sidebar-widget {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase;
}

/* Latest News Sidebar */
.sidebar-news-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.sidebar-news-item:last-child { border-bottom: none; margin-bottom: 0; }
.sidebar-news-img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.sidebar-news-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--secondary);
}
.sidebar-news-title a:hover { color: var(--primary); }
.sidebar-news-meta { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* Categories sidebar */
.cat-list { list-style: none; }
.cat-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list li a:hover { color: var(--primary); }
.cat-count {
    background: var(--light-bg);
    color: var(--text-muted);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
}

/* Tags */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    background: var(--light-bg);
    color: var(--secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    transition: all 0.2s;
    border: 1px solid var(--border);
}
.tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ===== SINGLE POST ===== */
.post-header { margin-bottom: 24px; }
.post-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 14px;
    line-height: 1.3;
}
.post-meta {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--text-muted);
    flex-wrap: wrap;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.post-meta i { color: var(--primary); margin-right: 5px; }
.post-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
.post-content p { margin-bottom: 16px; }
.post-content h2, .post-content h3 { margin: 24px 0 12px; color: var(--secondary); }
.post-tags { margin-top: 24px; }
.post-tags strong { margin-right: 10px; color: var(--secondary); }

/* ===== COMMENTS ===== */
.comments-section {
    background: #fff;
    padding: 28px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    margin-top: 28px;
}
.comment-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.comment-item:last-child { border-bottom: none; }
.comment-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.comment-name { font-weight: 700; font-size: 14px; color: var(--secondary); }
.comment-date { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.comment-text { font-size: 14px; color: #555; line-height: 1.6; }

/* Comment Form */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s;
    margin-bottom: 14px;
}
.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--primary); }
.comment-form textarea { min-height: 120px; resize: vertical; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-secondary:hover { background: #1a252f; color: #fff; }
.btn-sm { padding: 6px 14px; font-size: 13px; }

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 30px 0;
}
.page-link {
    display: inline-block;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--secondary);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}
.page-link:hover, .page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: #fff;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); margin: 0 6px; }

/* ===== ALERTS ===== */
.alert {
    padding: 12px 16px;
    border-radius: 5px;
    margin-bottom: 16px;
    font-size: 14px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--secondary);
    color: #ccc;
    padding: 50px 0 0;
}
.footer-logo { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.footer-about { font-size: 13px; line-height: 1.7; }
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #ccc; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-news-item { margin-bottom: 14px; }
.footer-news-item a { color: #ccc; font-size: 13px; line-height: 1.4; }
.footer-news-item a:hover { color: var(--primary); }
.footer-news-date { font-size: 11px; color: #888; margin-top: 3px; }
.footer-bottom {
    background: #1a252f;
    text-align: center;
    padding: 16px;
    font-size: 12px;
    color: #888;
    margin-top: 40px;
}
.footer-row { display: flex; flex-wrap: wrap; gap: 30px; }
.footer-col { flex: 1; min-width: 200px; }

/* ===== NO IMAGE PLACEHOLDER ===== */
.no-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 40px;
}
.no-img-sm {
    width: 70px;
    height: 60px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 20px;
    border-radius: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .col-8, .col-4, .col-6 { width: 100%; }
    .featured-post-img { height: 250px; }
    .post-title { font-size: 22px; }
    .main-nav ul { overflow-x: auto; }
    .header-search input { width: 160px; }
    .footer-col { min-width: 150px; }
    .breaking-ticker-inner { animation-duration: 20s; }
}
/* ===== DARK MODE ===== */
body.dark-mode {
    background: #0f1117;
    color: #e0e0e0;
}

/* Top bar */
body.dark-mode .top-bar {
    background: #1a1d27;
    color: #aaa;
}
body.dark-mode .top-bar a { color: #aaa; }
body.dark-mode .top-bar a:hover { color: #fff; }

/* Header */
body.dark-mode .site-header {
    background: #1a1d27;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
body.dark-mode .site-logo span { color: #aaa; }
body.dark-mode .header-search input {
    background: #252836;
    border-color: #3a3d4e;
    color: #e0e0e0;
}
body.dark-mode .header-search input::placeholder { color: #666; }
body.dark-mode .header-search input:focus { border-color: var(--primary); }

/* Navigation */
body.dark-mode .main-nav { background: #c0392b; }

/* Dropdown */
body.dark-mode .main-nav > .container > ul > li > ul.dropdown-menu {
    background: #1e2130;
    border-top-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
body.dark-mode .main-nav > .container > ul > li > ul.dropdown-menu > li > a {
    background: #1e2130;
    color: #ccc;
    border-bottom-color: #2e3244;
}
body.dark-mode .main-nav > .container > ul > li > ul.dropdown-menu > li > a:hover {
    background: #252836;
    color: #fff;
}

/* Breaking news */
body.dark-mode .breaking-news { background: #13151f; }
body.dark-mode .breaking-ticker-inner a { color: #bbb; }

/* Cards */
body.dark-mode .news-card {
    background: #1a1d27;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
body.dark-mode .news-card-title { color: #e0e0e0; }
body.dark-mode .news-card-title a { color: #e0e0e0; }
body.dark-mode .news-card-title a:hover { color: var(--primary); }
body.dark-mode .news-card-excerpt { color: #999; }
body.dark-mode .news-card-meta { color: #777; }

/* Featured post */
body.dark-mode .featured-post-body {
    background: #1a1d27;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
body.dark-mode .featured-post-title { color: #e0e0e0; }
body.dark-mode .featured-post-title a { color: #e0e0e0; }
body.dark-mode .featured-post-title a:hover { color: var(--primary); }

/* Section title */
body.dark-mode .section-title { color: #e0e0e0; }
body.dark-mode .section-title::after { background: #555; }

/* Sidebar */
body.dark-mode .sidebar-widget {
    background: #1a1d27;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
body.dark-mode .sidebar-title { color: #e0e0e0; }
body.dark-mode .sidebar-news-title { color: #ddd; }
body.dark-mode .sidebar-news-title a { color: #ddd; }
body.dark-mode .sidebar-news-meta { color: #666; }
body.dark-mode .sidebar-news-item { border-bottom-color: #2a2d3e; }
body.dark-mode .cat-list li {
    border-bottom-color: #2a2d3e;
    color: #ddd;
}
body.dark-mode .cat-list li a { color: #ddd; }
body.dark-mode .cat-count { background: #252836; color: #888; }
body.dark-mode .tag {
    background: #252836;
    color: #ccc;
    border-color: #3a3d4e;
}
body.dark-mode .tag:hover { background: var(--primary); color: #fff; }

/* Single post */
body.dark-mode .post-title { color: #e0e0e0; }
body.dark-mode .post-meta { color: #777; border-color: #2a2d3e; }
body.dark-mode .post-content { color: #ccc; }
body.dark-mode .post-content h2,
body.dark-mode .post-content h3 { color: #e0e0e0; }
body.dark-mode .post-tags { border-top-color: #2a2d3e; }
body.dark-mode .post-tags strong { color: #ddd; }

/* Post wrapper card */
body.dark-mode .post-wrapper {
    background: #1a1d27;
}

/* Comments */
body.dark-mode .comments-section {
    background: #1a1d27;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
body.dark-mode .comment-item { border-bottom-color: #2a2d3e; }
body.dark-mode .comment-name { color: #e0e0e0; }
body.dark-mode .comment-date { color: #666; }
body.dark-mode .comment-text { color: #bbb; }
body.dark-mode .comment-form input,
body.dark-mode .comment-form textarea {
    background: #252836;
    border-color: #3a3d4e;
    color: #e0e0e0;
}
body.dark-mode .comment-form input::placeholder,
body.dark-mode .comment-form textarea::placeholder { color: #555; }
body.dark-mode .comment-form input:focus,
body.dark-mode .comment-form textarea:focus { border-color: var(--primary); }

/* Breadcrumb */
body.dark-mode .breadcrumb {
    background: #1a1d27;
    border-bottom-color: #2a2d3e;
}
body.dark-mode .breadcrumb span { color: #888; }

/* Alerts */
body.dark-mode .alert-success { background: #1a3a2a; color: #6fcf97; border-color: #2d5a3d; }
body.dark-mode .alert-danger { background: #3a1a1a; color: #eb5757; border-color: #5a2d2d; }
body.dark-mode .alert-info { background: #1a2a3a; color: #56ccf2; border-color: #2d4a5a; }
body.dark-mode .alert-warning { background: #3a2d1a; color: #f2c94c; border-color: #5a4a2d; }

/* Pagination */
body.dark-mode .page-link {
    background: #1a1d27;
    border-color: #2a2d3e;
    color: #ccc;
}
body.dark-mode .page-link:hover,
body.dark-mode .page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* No image placeholder */
body.dark-mode .no-img {
    background: linear-gradient(135deg, #252836, #1a1d27);
    color: #444;
}
body.dark-mode .no-img-sm { background: #252836; color: #444; }

/* Footer — already dark, just tweak */
body.dark-mode .site-footer { background: #13151f; }
body.dark-mode .footer-bottom { background: #0a0c12; }

/* Scrollbar */
body.dark-mode ::-webkit-scrollbar { width: 8px; }
body.dark-mode ::-webkit-scrollbar-track { background: #1a1d27; }
body.dark-mode ::-webkit-scrollbar-thumb { background: #3a3d4e; border-radius: 4px; }
body.dark-mode ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Dark mode toggle button */
#darkModeToggle {
    background: none;
    border: 2px solid rgba(255,255,255,0.3);
    color: #ccc;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
#darkModeToggle:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
}
body.dark-mode #darkModeToggle {
    border-color: rgba(255,255,255,0.2);
    color: #f1c40f;
}