/* ═══════════════════════════════════════════════════════════════
   REDESIGN DASHBOARD CSS - Matching React Redesign exactly
   Font: DM Sans + Playfair Display
   Color: Warm amber/gold primary with neutral backgrounds
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --background: hsl(30, 6%, 97%);
    --foreground: hsl(20, 14%, 10%);
    --border: hsl(30, 6%, 88%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(20, 14%, 10%);
    --card-border: hsl(30, 6%, 92%);
    --sidebar-bg: hsl(20, 15%, 8%);
    --sidebar-foreground: hsl(30, 10%, 96%);
    --sidebar-border: hsl(20, 10%, 14%);
    --sidebar-accent: hsl(20, 10%, 14%);
    --sidebar-accent-foreground: hsl(30, 10%, 96%);
    --primary: hsl(36, 77%, 49%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(30, 6%, 92%);
    --secondary-foreground: hsl(20, 14%, 10%);
    --muted: hsl(30, 6%, 94%);
    --muted-foreground: hsl(20, 5%, 45%);
    --accent: hsl(30, 8%, 93%);
    --accent-foreground: hsl(20, 14%, 10%);
    --destructive: hsl(0, 84%, 60%);
    --input: hsl(30, 6%, 78%);
    --ring: hsl(36, 77%, 49%);
    --radius: 0.5rem;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════════ */

.dashboard-layout {
    display: flex;
    height: 100vh;
    width: 100%;
}

.main-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    margin-left: 16rem;
}

.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border);
    background: hsla(30, 6%, 97%, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 30;
}

.topbar-left { display: flex; align-items: center; gap: 0.5rem; }
.topbar-right { display: flex; align-items: center; gap: 0.25rem; }

.topbar-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

.icon-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    cursor: pointer;
    transition: background 0.15s;
}
.icon-btn:hover { background: var(--accent); }

.dashboard-main {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.dashboard-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════════════════════════ */

.page-header {
    margin-bottom: 1.5rem;
}

.page-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.page-subtitle {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR - Matching Redesign exactly
═══════════════════════════════════════════════════════════════ */

.sidebar {
    width: 16rem;
    height: 100vh;
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.sidebar-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--sidebar-border);
}

.sidebar-header .brand-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.sidebar-header .logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--primary-foreground);
}

.sidebar-header .logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--sidebar-foreground);
    letter-spacing: -0.025em;
}

.sidebar-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    padding: 0.75rem 0.75rem 0.5rem;
}

.sidebar-nav {
    flex: 1;
    padding: 0.5rem;
    overflow-y: auto;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: var(--sidebar-foreground);
    border-radius: var(--radius);
    transition: all 0.15s;
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 0;
}

.sidebar-nav .nav-link:hover {
    background: var(--sidebar-accent);
    transform: none;
}

.sidebar-nav .nav-link.active {
    background: var(--sidebar-accent);
    color: var(--primary);
    font-weight: 500;
    box-shadow: none;
}

.sidebar-nav .nav-icon {
    font-size: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-footer {
    padding: 0.75rem 0.5rem;
    border-top: 1px solid var(--sidebar-border);
}

.sidebar-footer .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: var(--sidebar-foreground);
    border-radius: var(--radius);
    transition: all 0.15s;
    font-size: 0.875rem;
    text-decoration: none;
}

.sidebar-footer .nav-link:hover {
    background: var(--sidebar-accent);
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════════════════════ */

.card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: none;
}

.card-padded {
    padding: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   STAT CARDS
═══════════════════════════════════════════════════════════════ */

.stat-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .stat-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: default;
    transition: background 0.15s;
}

.stat-card:hover {
    background: hsl(30, 6%, 99%);
}

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.stat-card-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stat-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.375rem;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.stat-card-icon.primary { color: var(--primary); }
.stat-card-icon.blue { color: hsl(199, 89%, 48%); }
.stat-card-icon.purple { color: hsl(262, 83%, 58%); }
.stat-card-icon.emerald { color: hsl(160, 84%, 39%); }

.stat-card-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   TABLES
═══════════════════════════════════════════════════════════════ */

table {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
}

thead tr {
    border-bottom: 1px solid var(--border);
}

th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

td {
    padding: 0.75rem 1rem;
    color: var(--foreground);
}

tbody tr {
    border-bottom: 1px solid var(--border);
}

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

/* ═══════════════════════════════════════════════════════════════
   BADGES
═══════════════════════════════════════════════════════════════ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid;
}

.badge-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--border);
}

.badge-amber {
    background: hsla(36, 100%, 50%, 0.15);
    color: hsl(36, 100%, 40%);
    border-color: hsla(36, 100%, 50%, 0.2);
}

.badge-blue {
    background: hsla(199, 89%, 48%, 0.15);
    color: hsl(199, 89%, 48%);
    border-color: hsla(199, 89%, 48%, 0.2);
}

.badge-emerald {
    background: hsla(160, 84%, 39%, 0.15);
    color: hsl(160, 84%, 39%);
    border-color: hsla(160, 84%, 39%, 0.2);
}

.badge-red {
    background: hsla(0, 84%, 60%, 0.15);
    color: hsl(0, 84%, 60%);
    border-color: hsla(0, 84%, 60%, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: none;
    transform: none;
}

.btn:hover {
    opacity: 0.9;
    transform: none;
    box-shadow: none;
}

.btn::before { display: none; }

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--accent);
    opacity: 1;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: none;
    backdrop-filter: none;
}

.btn-ghost:hover {
    background: var(--accent);
    opacity: 1;
}

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

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-icon {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
}

/* ═══════════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════════ */

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--foreground);
}

.form-input,
.form-control {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--card);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input:focus,
.form-control:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 2px hsla(36, 77%, 49%, 0.2);
}

.form-input::placeholder,
.form-control::placeholder {
    color: var(--muted-foreground);
}

/* ═══════════════════════════════════════════════════════════════
   CHARTS
═══════════════════════════════════════════════════════════════ */

.charts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .charts-grid { grid-template-columns: repeat(3, 1fr); }
    .charts-grid .chart-wide { grid-column: span 2; }
}

.chart-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.chart-header {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.chart-container {
    height: 16rem;
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════
   FILTER PILLS
═══════════════════════════════════════════════════════════════ */

.filter-pills {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.filter-pill:hover {
    background: var(--accent);
}

.filter-pill.active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.filter-count {
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 0 0.375rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    min-width: 1.25rem;
    text-align: center;
}

.filter-pill.active .filter-count {
    background: hsla(0, 0%, 100%, 0.2);
    color: var(--primary-foreground);
}

/* ═══════════════════════════════════════════════════════════════
   MODALS
═══════════════════════════════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: hsla(0, 0%, 0%, 0.5);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    width: 100%;
    max-width: 28rem;
    box-shadow: 0 25px 50px -12px hsla(0, 0%, 0%, 0.25);
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   PERSONNEL CARDS
═══════════════════════════════════════════════════════════════ */

.personnel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .personnel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .personnel-grid { grid-template-columns: repeat(3, 1fr); }
}

.personnel-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: default;
    transition: background 0.15s;
}

.personnel-card:hover {
    background: hsl(30, 6%, 99%);
}

.personnel-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.personnel-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.personnel-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: hsla(36, 77%, 49%, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.personnel-name {
    font-weight: 600;
}

.personnel-title {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
}

.personnel-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
}

.personnel-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.personnel-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   AVAILABILITY
═══════════════════════════════════════════════════════════════ */

.availability-grid {
    display: grid;
    grid-template-columns: 7.5rem 1fr 1fr 5rem;
    gap: 1rem;
    align-items: center;
}

.availability-header {
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.availability-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.availability-row:last-child {
    border-bottom: none;
}

.availability-day {
    font-weight: 500;
}

/* Switch */
.switch {
    position: relative;
    width: 2.75rem;
    height: 1.5rem;
    background: var(--input);
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s;
    border: none;
    padding: 0;
}

.switch.active {
    background: var(--primary);
}

.switch::after {
    content: '';
    position: absolute;
    top: 0.125rem;
    left: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    background: white;
    border-radius: 9999px;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.1);
}

.switch.active::after {
    transform: translateX(1.25rem);
}

.status-open { color: hsl(160, 84%, 39%); font-size: 0.75rem; }
.status-closed { color: var(--destructive); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════════ */

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .reviews-stats { grid-template-columns: repeat(3, 1fr); }
}

.review-stat-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: default;
    transition: background 0.15s;
}

.review-stat-card:hover {
    background: hsl(30, 6%, 99%);
}

.review-stat-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-stat-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.375rem;
    background: hsla(36, 77%, 49%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.125rem;
}

.review-stat-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.review-stat-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 400;
}

.review-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    cursor: default;
    transition: background 0.15s;
}

.review-card:hover {
    background: hsl(30, 6%, 99%);
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.review-customer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: hsla(36, 77%, 49%, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.75rem;
}

.review-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.review-comment {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.review-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-tag {
    display: inline-flex;
    padding: 0.125rem 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.75rem;
    color: var(--foreground);
}

/* ═══════════════════════════════════════════════════════════════
   PROFILE
═══════════════════════════════════════════════════════════════ */

.profile-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 56rem;
}

@media (min-width: 1024px) {
    .profile-layout { grid-template-columns: 1fr 18.75rem; }
}

.profile-logo-placeholder {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 1rem;
    border-radius: 0.375rem;
    background: var(--muted);
    border: 2px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-size: 2.5rem;
    opacity: 0.4;
}

.profile-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.profile-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.profile-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.profile-stat-value {
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   ALERTS
═══════════════════════════════════════════════════════════════ */

.alert {
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    border: 1px solid;
}

.alert-success {
    background: hsla(160, 84%, 39%, 0.1);
    color: hsl(160, 84%, 39%);
    border-color: hsla(160, 84%, 39%, 0.2);
}

.alert-error {
    background: hsla(0, 84%, 60%, 0.1);
    color: hsl(0, 84%, 60%);
    border-color: hsla(0, 84%, 60%, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   EMPTY STATE
═══════════════════════════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-state-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    opacity: 0.4;
}

.empty-state-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    .sidebar.open {
        transform: translateX(0);
    }
    .main-content {
        margin-left: 0;
    }
    .availability-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
