:root {
    --bg-color: #F9FAFB;
    /* Light Gray */
    --card-bg: #FFFFFF;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --accent: #FF0000;
    /* YouTube Red */
    --accent-hover: #CC0000;
    --danger: #EF4444;
    --success: #10B981;
    --border-color: #E5E7EB;
    --font-main: 'Outfit', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

.toast-notification.success .toast-icon {
    color: #10B981;
}

.toast-notification.error .toast-icon {
    color: #EF4444;
}

.toast-notification.info .toast-icon {
    color: #3B82F6;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Minimal Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
    background-clip: padding-box;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #D1D5DB transparent;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
}

/* Base sections with vertical padding */
section,
.main-content,
.auth-container {
    padding: 20px;
}

/* Header */
header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 2px 0;
    box-shadow: var(--shadow-sm);
}

header .container {
    padding-top: 8px;
    padding-bottom: 8px;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.btn-login,
.btn-signup {
    padding: 8px 20px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    transition: all 0.2s;
}

.btn-login {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-login:hover {
    border-color: var(--text-primary);
}

.btn-signup {
    background: var(--text-primary);
    /* Black/Dark Button */
    color: white;
}

.btn-signup:hover {
    background: black;
}

/* PWA Install Button */
.btn-install {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    border: 2px solid transparent;
}

.btn-install:hover {
    background: #CC0000 !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.pulse-border {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}


/* Mobile Menu */
.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        padding: 1.5rem 1.2rem;
        box-shadow: var(--shadow-md);
        gap: 12px;
        border-top: 1px solid var(--border-color);
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }


}

/* Hero / Index */
.hero-section {
    padding: 8rem 0 5rem;
    text-align: center;
    background: white;
    /* Often hero is white in these designs */
}

.hero-section h1 {
    font-size: 3.5rem;
    /* Bigger title */
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-section h1 span {
    color: var(--accent);
}

.hero-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.hero-search {
    margin: 2rem auto;
    display: flex;
    justify-content: center;
    gap: 0;
    /* Connected input/button */
    max-width: 700px;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: white;
    padding: 8px;
    border: 1px solid var(--border-color);
}

@media (max-width: 630px) {
    .hero-search {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .hero-search input {
        background: white;
        border-radius: 12px;
        border: 1px solid var(--border-color);
        box-shadow: var(--shadow-sm);
    }

    .hero-search button {
        width: 100%;
        border-radius: 12px;
    }

    .generate-form-guest {
        flex-direction: column !important;
    }

    .generate-form-guest button {
        width: 100% !important;
    }
}

.hero-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    outline: none;
    color: var(--text-primary);
}

.btn-primary {
    padding: 15px 35px;
    background: var(--accent);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-decoration: none;
}

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

/* Footer (Dark footer per screenshots typically, or simple) */
footer {
    background: #111827;
    /* Dark */
    color: white;
    padding: 4rem 0 2rem;
}

/* Login Page (Centered Card) */
.auth-container {
    min-height: calc(100vh - 80px);
    /* Height minus header */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
}

.auth-box {
    width: 100%;
    max-width: 450px;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.auth-box .logo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.auth-box h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.auth-box p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #F9FAFB;
    color: var(--text-primary);
    font-size: 1rem;
    transition: border 0.2s;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    background: white;
}


/* Dashboard Layout */
/* Dashboard Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 73px);
}

.sidebar {
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    padding: 2rem 1rem;
}

.sidebar a {
    color: var(--text-secondary);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 2px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sidebar a:hover,
.sidebar a.active {
    background: #FEF2F2;
    /* Light red bg */
    color: var(--accent);
}

.main-content {
    background: var(--bg-color);
    padding: 2rem;
    overflow-x: hidden;
}

/* Cards & Stats */
.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.stats-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .stats-preview {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
    }

    .stats-preview .card {
        min-width: unset;
        margin-bottom: 0;
        padding: 1rem;
    }

    .stats-preview h3 {
        font-size: 1.4rem;
    }
}

.stats-preview .card {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-preview h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stats-preview p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Grid Utility */
.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 992px) {
    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Table Management */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

th {
    background: #F3F4F6;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 12px 16px;
    text-align: left;
}

td {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

tr:last-child td {
    border-bottom: none;
}

/* Utilities */
/* Responsive Utilities */
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.copy-btn {
    color: var(--accent);
    background: #FEF2F2;
    border: none;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
}

.copy-btn:hover {
    background: var(--accent);
    color: white;
}

textarea.result-box {
    background: #F9FAFB;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

/* Admin Specific from Screenshots */
.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.icon-square {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Mobile Menu Overlay / Drawer */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    backdrop-filter: blur(2px);
}

.nav-overlay.active {
    display: block;
}

/* PWA Navigation - Hidden on Desktop */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: block;
        /* Hidden by transform usually */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 85%;
        max-width: 300px;
        background: white;
        padding: 1.5rem;
        z-index: 999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        height: 100vh;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        /* flex for column layout */
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        width: 100%;
        border-bottom: 1px solid #F3F4F6;
        padding-bottom: 15px;
    }

    .mobile-only-label {
        display: block !important;
        color: #9CA3AF;
        font-size: 0.7rem;
        font-weight: 800;
        margin-bottom: 15px;
        width: 100%;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-links a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        /* Match sidebar padding */
        font-size: 1rem;
        color: #374151;
        width: 100%;
        border-radius: 8px;
        /* Match sidebar radius */
        margin-bottom: 5px;
        text-decoration: none;
        transition: all 0.2s;
        font-weight: 500;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: #FEF2F2;
        color: #DC2626;
    }

    .nav-links i {
        width: 20px;
        text-align: center;
        margin-right: 15px;
        font-size: 1.1rem;
    }

    /* Active Item Block Style */
    .nav-links a.active {
        background: #DC2626 !important;
        color: white !important;
        padding: 14px 20px !important;
        border-radius: 12px;
        font-weight: 700;
        box-shadow: 0 4px 12px -2px rgba(220, 38, 38, 0.4);
        position: relative;
    }

    .nav-links a.active::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 20px;
        font-size: 0.8rem;
    }

    /* Specific Mobile Buttons */
    .btn-mobile-red-block {
        background: #DC2626;
        color: white !important;
        padding: 12px 20px !important;
        border-radius: 12px;
        font-weight: 700;
        display: flex !important;
        /* flex to align items */
        align-items: center;
        justify-content: flex-start;
        box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2);
    }

    .btn-mobile-signout {
        border: 1px solid #FEF2F2 !important;
        color: #DC2626 !important;
        text-align: center;
        border-radius: 15px;
        padding: 14px !important;
        margin-top: auto;
        font-weight: 800;
        background: white;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-bottom: 1.5rem;
        text-decoration: none;
        box-shadow: 0 4px 10px -2px rgba(220, 38, 38, 0.05);
        border: 1px solid #FEE2E2 !important;
    }

    .btn-mobile-signout i {
        margin: 0 !important;
        font-size: 1.25rem;
    }

    /* Fixed Bottom Navigation Bar */
    /* Fixed Bottom Navigation Bar - Base hidden on desktop */
    .mobile-bottom-nav {
        display: none;
    }

    /* Fixed Bottom Navigation Bar - Enhanced Premium Look */
    .mobile-bottom-nav {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        height: 70px;
        box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        padding: 0 1.5rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        /* Ensure it behaves well with safe area on iPhones */
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(70px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav .nav-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #94A3B8;
        font-size: 0.65rem;
        font-weight: 700;
        flex: 1;
        gap: 8px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .mobile-bottom-nav .nav-item i {
        font-size: 1.3rem;
        transition: transform 0.3s ease;
    }

    .mobile-bottom-nav .nav-item.active {
        color: #DC2626;
    }

    .mobile-bottom-nav .nav-item.active i {
        transform: translateY(-2px);
    }

    .mobile-bottom-nav .nav-item.active::after {
        content: '';
        position: absolute;
        bottom: -8px;
        width: 4px;
        height: 4px;
        background: #DC2626;
        border-radius: 50%;
    }

    .mobile-bottom-nav .nav-item.center-btn {
        background: linear-gradient(135deg, #DC2626, #B91C1C);
        color: white;
        width: 54px;
        height: 54px;
        border-radius: 18px;
        margin-top: -35px;
        box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
        flex: 0 0 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: 4px solid white;
    }

    .mobile-bottom-nav .nav-item.center-btn:active {
        transform: scale(0.9) translateY(0);
    }

    .mobile-bottom-nav .nav-item.center-btn i {
        font-size: 1.25rem;
        margin: 0;
    }

    .mobile-footer-info {
        display: block !important;
    }

    /* Specific Mobile Buttons */
    .btn-mobile-red {
        background: var(--accent);
        color: white !important;
        padding: 12px 15px !important;
        border-radius: 12px;
        font-weight: 700;
        margin-top: 10px;
        display: block;
        text-align: left;
    }

    .btn-mobile-logout {
        border: 1px solid #F3F4F6;
        color: #EF4444 !important;
        text-align: center;
        border-radius: 12px;
        padding: 12px !important;
        margin-top: 2rem;
        font-weight: 700;
        background: white;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    /* Dashboard Layout Mobile */
    .dashboard-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .sidebar {
        display: none !important;
        /* Hide sidebar on mobile */
    }

    .main-content {
        padding: 1rem 1rem 80px 1rem;
        overflow-x: hidden;
    }

    .mobile-bottom-nav {
        display: flex;
        /* Changed from block to flex for alignment */
    }

    /* Stats Grid removed from here as it is handled above */

    .card {
        padding: 1rem;
    }

    /* Hero */
    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-search {
        flex-direction: column;
        padding: 15px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-radius: 20px;
        gap: 15px;
        /* Added gap */
    }

    .hero-search input {
        width: 100%;
        margin-bottom: 0px;
        /* Gap handled by parent gap */
        border: 1px solid #F3F4F6;
        border-radius: 8px;
    }

    .hero-search button {
        width: 100%;
        padding: 12px;
    }

    /* Admin Dashboard Mobile fixes */
    .admin-card-header h4 {
        font-size: 1rem;
    }
}

/* Settings Grid */
/* Custom Logout Modal */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.custom-modal-overlay.active {
    display: flex;
}

.custom-modal {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: modalSlideUp 0.3s ease-out;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: #9CA3AF;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.modal-close:hover {
    color: #DC2626;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 60px;
    height: 60px;
    background: #FEF2F2;
    color: #DC2626;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.custom-modal h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
}

.custom-modal p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-modal-confirm {
    background: #DC2626;
    color: white;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    display: block;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.2);
    transition: transform 0.1s;
}

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

.btn-modal-cancel {
    background: white;
    border: 1px solid #E5E7EB;
    color: #374151;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-modal-cancel:hover {
    background: #F9FAFB;
}

/* Footer & Copyright Bar */
.main-footer {
    background: #050B14;
    color: white;
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: white;
}

.footer-brand p {
    color: #94A3B8;
    margin-top: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #DC2626;
}

.footer-copyright-bar {
    background: #020617;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #475569;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .copyright-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-notification {
    min-width: 280px;
    max-width: 350px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.35);
    border-left: 4px solid #6366F1;
    cursor: pointer;
}

.toast-notification.active {
    transform: translateX(0);
}

.toast-notification.success {
    border-left-color: #10B981;
}

.toast-notification.error {
    border-left-color: #EF4444;
}

.toast-notification.info {
    border-left-color: #3B82F6;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-content {
    flex: 1;
}

.toast-message {
    color: #1F2937;
    font-size: 0.85rem;
    font-weight: 600;
}

@keyframes toast-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast-notification.removing {
    animation: toast-out 0.4s forwards;
}

/* Custom Push Prompt */
.push-prompt-overlay {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 100%;
    max-width: 450px;
    padding: 0 20px;
    z-index: 10000;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.push-prompt-overlay.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}

.push-prompt-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
}

.push-prompt-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
    color: #EF4444;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.1);
}

.push-prompt-content {
    flex-grow: 1;
}

.push-prompt-content h4 {
    margin: 0 0 4px;
    font-weight: 800;
    color: #111827;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.push-prompt-content p {
    margin: 0 0 16px;
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.5;
    font-weight: 500;
}

.push-prompt-actions {
    display: flex;
    gap: 12px;
}

.btn-push-enable {
    background: #111827;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-push-enable:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-push-later {
    background: transparent;
    color: #6B7280;
    border: 1px solid #E5E7EB;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-push-later:hover {
    background: #F9FAFB;
    color: #111827;
}

@media (max-width: 480px) {
    .push-prompt-overlay {
        bottom: 20px;
        padding: 0 15px;
    }

    .push-prompt-card {
        padding: 20px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .push-prompt-icon {
        margin: 0 auto;
    }

    .push-prompt-actions {
        justify-content: center;
    }
}

/* Print Styles */
@media print {

    header,
    .sidebar,
    .mobile-bottom-nav,
    form,
    .btn-primary,
    .social-links,
    .footer-brand,
    .footer-column,
    .footer-copyright-bar,
    #toast-container {
        display: none !important;
    }

    .dashboard-grid {
        display: block !important;
    }

    .main-content {
        padding: 0 !important;
        background: white !important;
    }

    .card {
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
    }

    table {
        border: 1px solid #E5E7EB;
    }

    h2 {
        margin-bottom: 2rem !important;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    body {
        background: white !important;
    }
}

/* Reviews Horizontal Scroll */
.reviews-scroll-container {
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #DC2626 #F3F4F6;
    scroll-snap-type: x mandatory;
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background: #DC2626;
    border-radius: 10px;
}

.reviews-grid-horizontal {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: minmax(350px, 1fr);
    gap: 30px;
    width: max-content;
    padding: 0 20px 20px;
}

.review-card-interactive {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    cursor: pointer;
    text-align: left;
    scroll-snap-align: start;
    height: 100%;
}

.review-card-interactive:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Review Zoom Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-modal.active {
    display: flex;
    opacity: 1;
}

.review-modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-modal.active .review-modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    transition: color 0.2s;
}

.close-modal:hover {
    color: #DC2626;
}

/* Mobile Padding Adjustment */
@media (max-width: 480px) {
    .container {
        padding: 0 25px !important;
    }

    .hero-section h1 {
        font-size: 2.2rem;
        padding: 0 10px;
    }
}