/* RoadBite - Clean Modern UI */
:root {
    --primary-color: #ff6b35;
    --primary-hover: #f05a24;
    --primary-light: #ff8c5f;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --bg-color: #ffffff;
    --bg-secondary: #fafafa;
    --bg-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    color-scheme: light;
}

/* Dark Mode on html element */
html.dark-mode {
    color-scheme: dark;
}

/* Dark Mode on body element */
body.dark-mode {
    --bg-color: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #3d3d3d;
    --bg-gradient: linear-gradient(135deg, #cc5428 0%, #c67315 100%);
    color-scheme: dark;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--bg-color);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Main Content */
main {
    min-height: calc(100vh - 80px);
    padding: 40px 20px 140px;
}

/* Cards */
.card {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: border-color 0.3s;
    background: var(--bg-color);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-color);
    border-color: var(--primary-color);
}

.btn-success {
    background: var(--success-color);
    color: white;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Auth Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg-gradient);
    padding: 20px;
}

.auth-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Grid */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Stats Cards */
.stat-card {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Profile */
.profile-header {
    text-align: center;
    padding: 40px 0;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-gradient);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    font-weight: 700;
}

.profile-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-email {
    color: var(--text-secondary);
}

.profile-info {
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.info-value {
    color: var(--text-primary);
}

/* Settings */
.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.setting-label {
    font-weight: 500;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* FAQ */
.faq-item {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Map */
.map-shell {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--bg-color);
    margin: 12px 0 24px;
}

#map {
    height: clamp(320px, 65vh, 560px);
    width: 100%;
}

.map-alert {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    color: #075985;
    border: 1px solid #bae6fd;
    border-radius: var(--radius-md);
    padding: 10px 14px;
    font-size: 14px;
    margin-bottom: 24px;
}

.map-alert.error {
    background: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
}

.map-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.map-controls .form-input {
    flex: 1;
}

.input-with-swap {
    display: flex;
    flex: 1;
    gap: 8px;
    align-items: stretch;
    min-width: 260px;
}

.swap-button {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-color);
    color: var(--text-secondary);
    padding: 0 14px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.swap-button:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.input-chips {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.input-chip {
    border: 1px dashed var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.input-chip:hover:not(.disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.input-chip.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.recent-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.recent-pill {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 13px;
    background: var(--bg-color);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.recent-pill:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.map-fab-group {
    position: absolute;
    right: 16px;
    top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 500;
}

.map-button {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--bg-color);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.map-button i {
    color: var(--primary-color);
}

.map-button:active {
    transform: scale(0.97);
    box-shadow: var(--shadow-sm);
}

.map-button.locate {
    background: rgba(255, 255, 255, 0.95);
}

.map-button.direction {
    background: var(--primary-color);
    color: #fff;
}

.map-button.direction i {
    color: #fff;
}

.poi-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0 8px;
}

.poi-chip {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    background: var(--bg-color);
    color: var(--text-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.poi-chip i {
    color: var(--primary-color);
}

.poi-chip.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.poi-chip.active i {
    color: #fff;
}

.vendor-marker img {
    box-shadow: var(--shadow-md);
}

.vendor-popup {
    min-width: 220px;
}

.vendor-popup h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.vendor-popup p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.vendor-popup .status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
}

.vendor-popup .status.open {
    background: #dcfce7;
    color: #166534;
}

.vendor-popup .status.closed {
    background: #fee2e2;
    color: #991b1b;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 999px;
}

.status-chip.open {
    background: #dcfce7;
    color: #166534;
}

.status-chip.closed {
    background: #fee2e2;
    color: #991b1b;
}

.search-bar {
    position: relative;
    margin-bottom: 24px;
}

.search-input {
    width: 100%;
    padding: 16px 48px 16px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.search-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.search-chip:hover {
    border-color: var(--primary-color);
}

/* Vendor Cards */
.vendor-card {
    background: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.vendor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.vendor-image {
    width: 100%;
    height: 150px;
    background: var(--bg-gradient);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.vendor-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vendor-info {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Orders Table */
.orders-table {
    width: 100%;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.orders-table table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    background: var(--bg-secondary);
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.orders-table td {
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Menu Items */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.menu-item-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.menu-item-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.menu-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 16px;
}

.menu-item-actions {
    display: flex;
    gap: 8px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 12px;
    transition: color 0.3s;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    main {
        padding: 20px 16px 160px;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .orders-table {
        overflow-x: auto;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .menu-item-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

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

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gap-1 {
    gap: 8px;
}

.gap-2 {
    gap: 16px;
}

.gap-3 {
    gap: 24px;
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.toast.show {
    opacity: 1;
}

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

.modal-content {
    background-color: var(--bg-color);
    margin: auto;
    padding: 0;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
            font-size: 12px;
            font-weight: 600;
            margin-top: 4px;
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    color: var(--text-primary);
}

.modal-content form {
    padding: 24px;
}

.close {
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
}

/* Notifications */
.notification-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: background 0.3s;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: var(--bg-secondary);
    margin: 0 -16px;
    padding: 16px;
    border-radius: var(--radius-sm);
}

.notification-item.unread {
    background: #eff6ff;
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

/* Category Chips */
.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid transparent;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-chip:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Responsive Pre-order Modal improvements */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1000;
}

.modal-content {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    transform: translateY(8px);
    opacity: 0;
    animation: modalIn 160ms ease-out forwards;
}
.modal[hidden], .modal.hide { display: none !important; }

@keyframes modalIn {
    from { transform: translateY(12px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header, .modal-footer {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}
.modal-footer { border-bottom: none; border-top: 1px solid var(--border-color); }
.modal-header h3 { margin: 0; font-size: 18px; }
.modal-close { background: transparent; border: none; font-size: 18px; color: var(--text-secondary); cursor: pointer; }
.modal-body { padding: 12px 16px; }

/* Info item layout: responsive grid */
.info-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
}
.info-label { color: var(--text-secondary); font-size: 14px; }
.info-value { font-weight: 600; font-size: 14px; }

@media (max-width: 480px) {
    .modal-content { max-width: 100%; }
    .info-item { grid-template-columns: 1fr; }
    .info-value { justify-self: start; }
    .modal-header, .modal-footer { padding: 12px; }
    .modal-body { padding: 8px 12px; }
    .modal-footer .btn { padding: 10px; font-size: 14px; }
    .form-input, .search-input, select, input[type="number"] { font-size: 16px; } /* better mobile tap targets */
}

/* Improve buttons and inputs spacing inside modal */
.modal-footer .btn { flex: 1; }
.modal-footer { display: flex; gap: 8px; }

.notification-content {
    flex: 1;
}

.notification-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.notification-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.notification-time {
    font-size: 12px;
    color: var(--text-secondary);
}
