/* ===== CSS Variables for Theme ===== */
:root {
    --primary-color: #10B981;
    --primary-dark: #059669;
    --primary-light: #ECFDF5;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --red-500: #EF4444;
    --orange-500: #F59E0B;
    --blue-500: #3B82F6;
}

/* ===== Global Styles ===== */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--gray-100);
    margin: 0;
    padding: 0;
    color: var(--gray-800);
    transition: background-color 0.3s, color 0.3s;
}

html[dir="rtl"] body {
    text-align: right;
}

/* ===== Top Header ===== */
.top-header {
    background: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.page-title {
    margin-right: 15px;
    font-size: 20px;
    font-weight: 700;
}

/* ===== Cards ===== */
.card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-200);
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.btn-outline:hover {
    background: var(--gray-50);
}

.btn-danger {
    background: #FEF2F2;
    color: var(--red-500);
    border: 1px solid #FECACA;
}

/* ===== Form Inputs ===== */
.form-group {
    margin-bottom: 20px;
    text-align: right;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 14px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    background: var(--gray-50);
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-color);
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== Badges ===== */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-success {
    background: var(--primary-light);
    color: #065F46;
}

.badge-warning {
    background: #FFF7ED;
    color: #92400E;
}

.badge-danger {
    background: #FEF2F2;
    color: #991B1B;
}

/* ===== Alerts ===== */
.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.alert-success {
    background: var(--primary-light);
    color: #065F46;
    border: 1px solid var(--primary-color);
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid var(--red-500);
}

/* ===== Loading Spinner ===== */
.spinner {
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== Accessibility ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
    .page-title {
        font-size: 18px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }

/* ===== Restaurant Detail Page ===== */

.mobile-wrapper { 
    max-width: 480px; 
    margin: 0 auto; 
    background-color: #fff; 
    min-height: 100vh; 
    position: relative; 
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding-bottom: 80px;
}

.brand-hero {
    background-color: var(--gray-50);
    padding: 40px 20px 30px 20px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.brand-circle {
    width: 280px;
    height: 110px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    padding: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.brand-circle::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
}

.view-cert-btn {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.view-cert-btn:active {
    background: var(--primary-light);
    transform: scale(0.98);
}

.badges-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.mini-badge {
    background: white;
    border: 1px solid var(--gray-200);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-700);
}

.status-badge-corner {
    position: absolute; 
    top: 15px; 
    left: 15px;
    padding: 4px 10px; 
    border-radius: 8px;
    font-size: 12px; 
    font-weight: 700; 
    color: white;
}

.status-open { 
    background: var(--primary-color); 
}

.status-closed { 
    background: var(--red-500); 
}

/* Modal Styles */
.modal-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 10px;
    border-radius: 12px;
    max-width: 100%;
    max-height: 90vh;
    overflow: auto;
    position: relative;
}

.modal-close {
    position: absolute; 
    top: -40px; 
    left: 50%; 
    transform: translateX(-50%);
    color: white; 
    font-size: 30px; 
    cursor: pointer;
}

.full-cert-img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

/* Info & Actions */
.content-container { 
    padding: 20px; 
}

.info-row { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-bottom: 15px; 
    color: var(--gray-600); 
    font-size: 15px; 
}

.info-row i { 
    color: var(--primary-color); 
    width: 20px; 
    text-align: center; 
}

.kosher-status-box {
    background: var(--primary-light);
    border: 1px solid var(--primary-color);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.kosher-title { 
    font-weight: 700; 
    color: #065F46; 
    margin-bottom: 5px; 
    display: flex; 
    justify-content: space-between; 
}

.kosher-exp { 
    font-size: 14px; 
    color: #047857; 
}

.actions-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 15px; 
    margin: 25px 0; 
}

.action-btn { 
    background: var(--gray-100); 
    padding: 15px; 
    border-radius: 12px; 
    text-align: center; 
    text-decoration: none; 
    color: var(--gray-800); 
    font-weight: 600; 
    transition: 0.2s; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
}

.action-btn i { 
    font-size: 24px; 
    color: var(--primary-color); 
}

.btn-camera { 
    grid-column: span 2; 
    background: var(--primary-color); 
    color: white; 
}

.btn-camera i { 
    color: white; 
}

/* Reviews & Sharing */
.google-section { 
    margin-top: 30px; 
    border-top: 1px solid var(--gray-100); 
    padding-top: 20px; 
}

.review-card { 
    background: var(--gray-50); 
    padding: 15px; 
    border-radius: 12px; 
    margin-bottom: 10px; 
    font-size: 14px; 
}

.stars { 
    color: var(--primary-color); 
    margin-bottom: 5px; 
    font-size: 12px; 
}

.share-btn {
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== HOME PAGE STYLES ===== */

.app-wrapper {
    max-width: 480px; 
    margin: 0 auto; 
    background-color: #fff;
    min-height: 100vh; 
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    position: relative; 
    padding-bottom: 60px;
}

.header-btn {
    border: 1.8px solid var(--primary-color); 
    background: white; 
    color: var(--primary-color);
    border-radius: 12px; 
    padding: 6px 14px; 
    font-weight: 700; 
    font-size: 14px;
    display: flex; 
    align-items: center; 
    gap: 6px; 
    cursor: pointer;
    transition: all 0.2s;
}

.header-btn:hover {
    background: var(--primary-color);
    color: white;
}

.header-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.controls-section { 
    padding: 15px 20px; 
    background: white; 
}

.search-bar-green {
    background-color: var(--primary-color); 
    border-radius: 50px; 
    padding: 12px 20px;
    display: flex; 
    align-items: center; 
    color: white; 
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}

.search-bar-green input { 
    background: transparent; 
    border: none; 
    color: white; 
    width: 100%; 
    outline: none; 
    font-size: 16px; 
    font-weight: 500; 
}

.search-bar-green input::placeholder { 
    color: rgba(255,255,255,0.85); 
}

.btn-row { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 5px; 
}

.btn-custom-outline {
    flex: 1; 
    background: white; 
    border: 1.8px solid var(--primary-color); 
    color: var(--primary-color);
    padding: 10px; 
    border-radius: 12px; 
    font-weight: 700; 
    font-size: 15px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 8px; 
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-custom-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-custom-outline:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.card-container { 
    padding: 10px 15px; 
    background: #f8f9fa; 
}

.biz-card {
    background: white; 
    border-radius: 20px; 
    padding: 15px; 
    margin-bottom: 15px;
    position: relative; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: block; 
    text-decoration: none; 
    color: inherit; 
    min-height: 160px; 
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.biz-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.biz-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.tag-kosher {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 16px;
    border-radius: 50px; 
    font-size: 12px;
    font-weight: 800;
    color: white;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tag-status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.tag-kosher.badatz-beit-yosef {
    background: #10B981 !important;
    border: 2px solid #059669;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.nav-btn-dashed {
    position: absolute; 
    bottom: 15px; 
    left: 15px; 
    width: 55px; 
    height: 55px; 
    border: 2.5px dashed var(--primary-color); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--primary-color); 
    font-size: 24px; 
    background: var(--primary-light);
    cursor: pointer;
    transition: all 0.2s;
}

.nav-btn-dashed:hover {
    background: var(--primary-color);
    color: white;
    border-style: solid;
}

.nav-btn-dashed:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.biz-info { 
    padding-left: 60px; 
    padding-top: 35px; 
    text-align: right; 
}

.biz-name {
    font-weight: 800;
    font-size: 18px;
    color: #1F2937;
    margin-top: 25px;
    margin-bottom: 5px;
    text-align: right;
}

.biz-addr { 
    font-size: 13px; 
    color: #666; 
    margin-bottom: 4px; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
}

.biz-dist {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.overlay { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); 
    z-index: 2000; 
    display: none; 
    backdrop-filter: blur(3px); 
}

.side-menu { 
    position: fixed; 
    top: 0; 
    right: -320px; 
    width: 300px; 
    height: 100%; 
    background: white; 
    z-index: 2100; 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column; 
    box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
}

.side-menu.active { 
    right: 0; 
}

.menu-head { 
    background: var(--primary-color); 
    padding: 40px 20px; 
    color: white; 
}

.menu-item { 
    display: flex; 
    align-items: center; 
    padding: 15px 20px; 
    color: #333; 
    text-decoration: none; 
    border-bottom: 1px solid #f5f5f5; 
    font-weight: 500;
    transition: background 0.2s;
}

.menu-item:hover {
    background: #f8f9fa;
}

.menu-item:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.menu-item i { 
    width: 30px; 
    color: var(--primary-color); 
    font-size: 18px; 
}

.filter-modal { 
    position: fixed; 
    bottom: -100%; 
    left: 0; 
    right: 0; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2100; 
    border-radius: 24px 24px 0 0; 
    padding: 25px; 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    max-width: 480px; 
    margin: 0 auto; 
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    display: none; /* מוסתר כברירת מחדל */
}

.filter-modal::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: #E5E7EB;
    border-radius: 2px;
    margin: -10px auto 20px auto;
}

.filter-modal.active { 
    bottom: 0; 
    display: block; /* מוצג כשיש active */
}

.filter-header-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 0; 
    border-bottom: 1px solid #eee; 
    cursor: pointer; 
    font-weight: 700; 
}

.filter-header-item[aria-expanded="true"] i { 
    transform: rotate(180deg); 
}

.filter-header-item i { 
    transition: 0.3s; 
    color: var(--primary-color); 
}

.chip { 
    display: inline-block; 
    padding: 8px 16px; 
    margin: 4px; 
    background: #f1f3f5; 
    border-radius: 20px; 
    font-size: 14px; 
    cursor: pointer; 
    border: 1.5px solid transparent;
    transition: all 0.2s;
}

.chip:hover {
    background: #e9ecef;
}

.chip:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.chip.active { 
    background: #d1fae5; 
    color: #065f46; 
    border-color: var(--primary-color); 
    font-weight: 700; 
}

.radius-chip { 
    padding: 12px 20px; 
    background: #f1f3f5; 
    border-radius: 15px; 
    font-weight: 600; 
    cursor: pointer; 
    border: 2px solid transparent; 
    transition: 0.2s; 
    color: #444; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.radius-chip:hover {
    background: #e9ecef;
}

.radius-chip:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.radius-chip.active { 
    background: var(--primary-color); 
    color: white; 
}

.radius-chip i { 
    display: none; 
}

.radius-chip.active i { 
    display: inline-block; 
}

.alert-toast {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    min-width: 300px;
    max-width: 90%;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translate(-50%, -100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* ===== Dark Mode ===== */
/* ===== Dark Mode ===== */
body.dark-mode {
    --gray-50: #000000;
    --gray-100: #0a0a0a;
    --gray-200: #111111;
    --gray-300: #1a1a1a;
    --gray-400: #888888;
    --gray-500: #999999;
    --gray-600: #cccccc;
    --gray-700: #dddddd;
    --gray-800: #e8e8e8;
    --gray-900: #f5f5f5;
    --primary-light: #0a2a1a;
    background-color: #000000;
    color: #e8e8e8;
}

/* App wrapper */
body.dark-mode .app-wrapper {
    background-color: #000000;
    box-shadow: none;
}

/* Header */
body.dark-mode .top-header {
    background: #000000;
    border-bottom-color: #1a1a1a;
}

body.dark-mode .header-btn {
    background: #000000;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .header-btn:hover {
    background: var(--primary-color);
    color: white;
}

body.dark-mode .logo-text {
    color: #e8e8e8;
}

/* Bottom nav */
body.dark-mode .bottom-nav {
    background: #000000;
    border-top-color: #1a1a1a;
}

/* Controls section */
body.dark-mode .controls-section {
    background: #000000;
}

/* Cards */
body.dark-mode .card,
body.dark-mode .business-card,
body.dark-mode .detail-card,
body.dark-mode .review-card,
body.dark-mode .info-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
    color: #e8e8e8;
}

/* Search */
body.dark-mode .search-bar,
body.dark-mode .search-bar input,
body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: #0a0a0a;
    border-color: #1a1a1a;
    color: #e8e8e8;
}

body.dark-mode .search-bar input::placeholder {
    color: #666666;
}

/* Side menu */
body.dark-mode .side-menu {
    background: #000000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

body.dark-mode .menu-item {
    color: #e8e8e8;
    border-bottom-color: #1a1a1a;
}

body.dark-mode .menu-item:hover {
    background: #0a0a0a;
}

/* Filter modal */
body.dark-mode .filter-modal {
    background: rgba(0, 0, 0, 0.95);
}

body.dark-mode .filter-modal::before {
    background: #333333;
}

body.dark-mode .filter-header-item {
    border-bottom-color: #1a1a1a;
    color: #e8e8e8;
}

/* Chips */
body.dark-mode .chip {
    background: #0a0a0a;
    color: #cccccc;
    border-color: #1a1a1a;
}

body.dark-mode .chip:hover {
    background: #111111;
}

body.dark-mode .chip.active {
    background: #0a2a1a;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Radius chips */
body.dark-mode .radius-chip {
    background: #0a0a0a;
    color: #cccccc;
    border-color: #1a1a1a;
}

body.dark-mode .radius-chip:hover {
    background: #111111;
}

body.dark-mode .radius-chip.active {
    background: var(--primary-color);
    color: white;
}

/* Category chips */
body.dark-mode .category-chip {
    background: #0a0a0a;
    color: #cccccc;
}

body.dark-mode .category-chip.active {
    background: var(--primary-color);
    color: white;
}

/* Text */
body.dark-mode .section-title,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3,
body.dark-mode h4, body.dark-mode h5 {
    color: #e8e8e8;
}

body.dark-mode .business-name,
body.dark-mode .business-address,
body.dark-mode .business-category {
    color: #cccccc;
}

body.dark-mode a {
    color: var(--primary-color);
}

/* Modals */
body.dark-mode .modal-content {
    background: #000000;
    color: #e8e8e8;
}

/* Settings */
body.dark-mode .settings-container,
body.dark-mode .setting-item {
    background: #000000;
    border-color: #1a1a1a;
}

body.dark-mode .setting-label {
    color: #e8e8e8;
}

/* Nav icons */
body.dark-mode .nav-item .nav-icon {
    color: #666666;
}

body.dark-mode .nav-item.active .nav-icon {
    color: var(--primary-color);
}

/* Overlay */
body.dark-mode .overlay {
    background: rgba(0, 0, 0, 0.7);
}

/* Navbar (base.html) */
body.dark-mode .navbar-custom {
    background: #000000 !important;
}

body.dark-mode .offcanvas {
    background: #000000;
    color: #e8e8e8;
}

body.dark-mode .offcanvas-header {
    background: #0a0a0a;
}

body.dark-mode .nav-link {
    color: #e8e8e8;
    border-bottom-color: #1a1a1a;
}

body.dark-mode .nav-link:hover {
    background: #0a0a0a;
}