/* ========================================
   MEDICARE RESERVATIONS - COMPONENT STYLES
   UI Components for Clinic Reservation System
   ======================================== */

/* ========== NAVIGATION ========== */
.nav-luxury {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-normal);
}

.nav-luxury.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.nav-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    font-size: var(--text-xl);
    color: var(--luxury-black);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-white);
}

.nav-logo-text span {
    color: var(--gold-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-2);
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold-primary);
    transition: all var(--transition-fast);
}

/* Mobile Nav */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--luxury-charcoal);
        flex-direction: column;
        padding: var(--space-8);
        gap: var(--space-4);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-cta .btn {
        display: none;
    }
}

/* ========== HERO SECTION ========== */
.hero-luxury {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: var(--space-8);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero-badge span {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

.hero-title {
    font-size: var(--text-6xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-muted);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.hero-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: var(--space-4);
    align-items: end;
}

.search-field {
    text-align: left;
}

.search-field-label {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: var(--space-2);
}

.search-field-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    background: var(--luxury-gray);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: var(--text-base);
}

.search-field-input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

@media (max-width: 768px) {
    .hero-search-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: var(--text-4xl);
    }
}

/* ========== RESTAURANT CARDS ========== */
.restaurant-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.restaurant-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.restaurant-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.restaurant-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.restaurant-card:hover .restaurant-card-image img {
    transform: scale(1.05);
}

.restaurant-card-badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
}

.restaurant-card-favorite {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    color: var(--text-white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.restaurant-card-favorite:hover,
.restaurant-card-favorite.active {
    background: var(--gold-primary);
    color: var(--luxury-black);
}

.restaurant-card-content {
    padding: var(--space-5);
}

.restaurant-card-category {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: var(--space-2);
}

.restaurant-card-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.restaurant-card-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.restaurant-card-location i {
    color: var(--gold-primary);
}

.restaurant-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-subtle);
}

.restaurant-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.restaurant-card-rating i {
    color: var(--gold-primary);
}

.restaurant-card-rating span {
    font-weight: 600;
}

.restaurant-card-reviews {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* ========== BOOKING WIDGET ========== */
.booking-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: sticky;
    top: 100px;
}

.booking-widget-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.booking-widget-title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.booking-widget-price {
    color: var(--gold-primary);
    font-size: var(--text-lg);
}

.booking-widget-price span {
    color: var(--text-muted);
    font-size: var(--text-sm);
}

.booking-date-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.booking-guests {
    margin-bottom: var(--space-6);
}

.guest-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-2);
}

.guest-counter-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--luxury-light-gray);
    border: none;
    border-radius: var(--radius-md);
    color: var(--gold-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.guest-counter-btn:hover {
    background: var(--gold-primary);
    color: var(--luxury-black);
}

.guest-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guest-counter-value {
    font-size: var(--text-lg);
    font-weight: 600;
}

.booking-time-slots {
    margin-bottom: var(--space-6);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
}

.time-slot {
    padding: var(--space-3);
    text-align: center;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--gold-primary);
}

.time-slot.selected {
    background: var(--gold-primary);
    color: var(--luxury-black);
    border-color: var(--gold-primary);
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ========== TABLE SELECTOR ========== */
.table-selector {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
}

.table-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-6);
}

.table-map {
    position: relative;
    background: var(--luxury-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    min-height: 400px;
}

.table-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-light);
}

.table-item.table-2 {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
}

.table-item.table-4 {
    width: 80px;
    height: 80px;
}

.table-item.table-6 {
    width: 120px;
    height: 60px;
}

.table-item.table-8 {
    width: 140px;
    height: 70px;
}

.table-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.table-item.selected {
    background: var(--gold-primary);
    color: var(--luxury-black);
    border-color: var(--gold-light);
}

.table-item.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    border-style: dashed;
}

.table-legend {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    margin-top: var(--space-6);
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-sm);
}

.legend-dot.available {
    border: 2px solid var(--gold-primary);
}

.legend-dot.selected {
    background: var(--gold-primary);
}

.legend-dot.unavailable {
    border: 2px dashed var(--text-muted);
    opacity: 0.5;
}

/* ========== MENU DISPLAY ========== */
.menu-section {
    margin-bottom: var(--space-12);
}

.menu-category {
    margin-bottom: var(--space-8);
}

.menu-category-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.menu-category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--gold-primary);
}

.menu-category-title {
    font-size: var(--text-2xl);
}

.menu-items {
    display: grid;
    gap: var(--space-4);
}

.menu-item {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-5);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.menu-item:hover {
    border-color: var(--border-gold);
}

.menu-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
    flex-shrink: 0;
}

.menu-item-content {
    flex: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-2);
}

.menu-item-name {
    font-size: var(--text-lg);
    font-weight: 600;
}

.menu-item-price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--gold-primary);
}

.menu-item-description {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.menu-item-tags {
    display: flex;
    gap: var(--space-2);
}

.menu-tag {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-2);
    background: var(--luxury-gray);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.menu-tag.vegetarian { color: var(--emerald); }
.menu-tag.spicy { color: #ef4444; }
.menu-tag.popular { color: var(--gold-primary); }

/* ========== REVIEWS ========== */
.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-4);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--border-gold);
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.review-date {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.review-rating {
    display: flex;
    gap: var(--space-1);
}

.review-rating i {
    color: var(--gold-primary);
    font-size: var(--text-sm);
}

.review-content {
    color: var(--text-light);
    line-height: 1.7;
}

.review-images {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.review-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.review-images img:hover {
    transform: scale(1.05);
}

/* ========== BOOKING SUMMARY ========== */
.booking-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}

.summary-header {
    text-align: center;
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--space-6);
}

.summary-restaurant {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.summary-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(45, 90, 39, 0.2);
    border-radius: var(--radius-full);
    color: var(--emerald);
    font-size: var(--text-sm);
}

.summary-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.summary-item {
    text-align: center;
    padding: var(--space-4);
    background: var(--luxury-gray);
    border-radius: var(--radius-md);
}

.summary-item-icon {
    font-size: var(--text-2xl);
    color: var(--gold-primary);
    margin-bottom: var(--space-2);
}

.summary-item-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.summary-item-value {
    font-weight: 600;
    color: var(--text-white);
}

.summary-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
}

.summary-price-label {
    color: var(--text-muted);
}

.summary-price-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    color: var(--gold-primary);
}

/* ========== CONFIRMATION PAGE ========== */
.confirmation-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
}

.confirmation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    text-align: center;
    max-width: 500px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-6);
    font-size: var(--text-4xl);
    color: var(--luxury-black);
}

.confirmation-title {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
}

.confirmation-message {
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.confirmation-code {
    background: var(--luxury-gray);
    border: 1px dashed var(--border-gold);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-8);
}

.confirmation-code-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

.confirmation-code-value {
    font-family: monospace;
    font-size: var(--text-2xl);
    letter-spacing: 4px;
    color: var(--gold-primary);
}

/* ========== FOOTER ========== */
.footer-luxury {
    background: var(--luxury-charcoal);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand-description {
    color: var(--text-muted);
    margin: var(--space-4) 0;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--luxury-gray);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--gold-primary);
    color: var(--luxury-black);
    border-color: var(--gold-primary);
}

.footer-heading {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: var(--space-5);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--text-muted);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-description {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* ========== DASHBOARD COMPONENTS ========== */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.dashboard-sidebar {
    background: var(--luxury-charcoal);
    border-right: 1px solid var(--border-subtle);
    padding: var(--space-6);
    position: fixed;
    width: 260px;
    height: 100vh;
    overflow-y: auto;
}

.dashboard-main {
    margin-left: 260px;
    padding: var(--space-8);
    background: var(--bg-primary);
}

.sidebar-nav {
    list-style: none;
    margin-top: var(--space-8);
}

.sidebar-nav-item {
    margin-bottom: var(--space-2);
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.sidebar-nav-link:hover,
.sidebar-nav-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.sidebar-nav-link i {
    width: 20px;
}

/* Dashboard Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.stat-card-dashboard {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.stat-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    color: var(--gold-primary);
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.stat-card-value {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--space-1);
}

.stat-card-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.stat-card-change {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    margin-top: var(--space-2);
}

.stat-card-change.positive {
    color: var(--emerald);
}

.stat-card-change.negative {
    color: var(--burgundy);
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: fixed;
        left: -260px;
        z-index: var(--z-fixed);
        transition: left var(--transition-normal);
    }

    .dashboard-sidebar.active {
        left: 0;
    }

    .dashboard-main {
        margin-left: 0;
    }
}
