/* ==========================================================================
   getmybeach - Premium SaaS UI Design System (Light & Dark Theme Support)
   Responsive Mobile & Tablet Optimization (iOS Safari & Android Certified)
   ========================================================================== */

:root {
    /* Dark Theme Default Variables */
    --bg-dark: #090d16;
    --bg-card: rgba(30, 41, 59, 0.75);
    --border-color: rgba(255, 255, 255, 0.12);
    --nav-bg: rgba(15, 23, 42, 0.95);

    --primary-cyan: #06b6d4;
    --accent-gold: #fbbf24;
    --status-green: #10b981;
    --status-red: #ef4444;
    --status-yellow: #f59e0b;
    --status-blue: #3b82f6;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --heading-color: #ffffff;
    --input-bg: rgba(15, 23, 42, 0.8);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Light Theme Overrides (High-Contrast & Perfect Readability) */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #cbd5e1;
    --nav-bg: #ffffff;

    --primary-cyan: #0284c7;
    --accent-gold: #d97706;
    --status-green: #059669;
    --status-red: #dc2626;
    --status-yellow: #d97706;
    --status-blue: #2563eb;

    --text-main: #0f172a;
    --text-muted: #475569;
    --heading-color: #0f172a;
    --input-bg: #f8fafc;
}

/* Light Theme Specific UI Components Overrides */
[data-theme="light"] h1, 
[data-theme="light"] h2, 
[data-theme="light"] h3, 
[data-theme="light"] h4,
[data-theme="light"] .sidebar-brand .logo-text h1,
[data-theme="light"] .user-role-title,
[data-theme="light"] .glass-dashboard-card h3,
[data-theme="light"] .saas-brand h1,
[data-theme="light"] .modal-header h3 {
    color: #0f172a !important;
}

[data-theme="light"] .sidebar-brand .logo-text h1 span,
[data-theme="light"] .saas-brand h1 span {
    color: var(--primary-cyan) !important;
}

[data-theme="light"] .glass-sidebar {
    background: #ffffff;
    border-right: 1px solid #cbd5e1;
}

[data-theme="light"] .nav-item {
    color: #475569;
}

[data-theme="light"] .nav-item:hover {
    color: #0f172a;
    background: #f1f5f9;
}

[data-theme="light"] .glass-card-user {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .user-email-subtitle {
    color: #475569;
}

[data-theme="light"] .input-field label {
    color: #334155 !important;
    font-weight: 600;
}

[data-theme="light"] .input-field input, 
[data-theme="light"] .input-field select {
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #cbd5e1;
}

[data-theme="light"] .saas-table th {
    background: #e2e8f0;
    color: #0f172a;
}

[data-theme="light"] .row-header-badge {
    color: #1e293b;
    font-weight: 700;
}

/* Layout Builder Cards Styling */
.layout-editor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

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

.layout-card-title {
    color: var(--primary-cyan);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

.layout-card-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
}

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

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(251, 191, 36, 0.1) 0px, transparent 50%);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.app-container { display: flex; flex-direction: column; min-height: 100vh; }

/* Language Selector Dropdown Widget */
.lang-selector-container {
    display: inline-flex;
    align-items: center;
}

.lang-select-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.lang-select-dropdown:hover {
    border-color: var(--primary-cyan);
}

.lang-select-dropdown option {
    background: #0f172a;
    color: #fff;
}

/* Full App Layout Grid */
.full-app-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* Left Sidebar Navigation */
.glass-sidebar {
    background: rgba(15, 23, 42, 0.95);
    border-right: 1px solid var(--border-color);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(16px);
    z-index: 10;
}

.sidebar-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.sidebar-brand .logo-icon { font-size: 30px; background: rgba(6, 182, 212, 0.2); padding: 6px; border-radius: 12px; }
.sidebar-brand .logo-text h1 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--heading-color); }
.sidebar-brand .logo-text h1 span { color: var(--primary-cyan); }

.sidebar-nav { display: flex; flex-direction: column; gap: 8px; }

.nav-item {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    text-align: left;
}

.nav-item:hover { color: var(--text-main); background: rgba(255, 255, 255, 0.05); }

.nav-item.active {
    background: rgba(6, 182, 212, 0.15);
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.25);
}

.nav-icon { font-size: 18px; }

/* Floating User Profile Card at Sidebar Bottom */
.glass-card-user {
    margin-top: auto;
    background: linear-gradient(135deg, rgba(40, 52, 73, 0.8), rgba(20, 29, 44, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.user-card-header { display: flex; flex-direction: column; gap: 4px; }
.user-role-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--heading-color); display: flex; align-items: center; gap: 6px; }
.user-email-subtitle { font-size: 12px; color: var(--text-muted); word-break: break-all; }

.btn-logout-pill {
    width: 100%;
    background: #ff0033;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(255, 0, 51, 0.4);
    transition: all 0.2s ease;
}

.btn-logout-pill:hover { background: #e6002e; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255, 0, 51, 0.6); }

/* Workspace Wrapper */
.workspace-wrapper { display: flex; flex-direction: column; height: 100vh; overflow: hidden; }

.inner-top-nav {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.beach-club-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    border-left: 4px solid var(--primary-cyan);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.club-label { color: var(--text-muted); font-size: 12px; font-weight: 500; }
.beach-club-tag strong {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
}

/* Date Picker Selector Bar */
.date-picker-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
}

.date-picker-bar label { color: var(--text-main); font-weight: 600; }

.date-picker-bar input[type="date"] {
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    color: var(--primary-cyan);
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    font-family: var(--font-body);
    outline: none;
}

.user-profile { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.theme-toggle-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.weather-date-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 12px;
}

.weather-info { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.weather-info .temp { color: var(--accent-gold); }
.weather-info .wind { color: var(--text-muted); font-size: 11px; }

.date-info { display: flex; align-items: center; gap: 8px; border-left: 1px solid var(--border-color); padding-left: 10px; }
.time-display { font-family: var(--font-heading); font-weight: 700; color: var(--accent-gold); }

.status-indicator { width: 8px; height: 8px; border-radius: 50%; background-color: var(--status-green); box-shadow: 0 0 10px var(--status-green); }

/* Tab Pages Container */
.tab-page { display: none; height: 100%; width: 100%; overflow: hidden; }
.tab-page.active { display: flex; flex: 1; }

/* Beach Map Workspace Layout - 100% Full Width Screen! */
.beach-map-workspace { display: flex; flex-direction: column; width: 100%; height: 100%; }

/* Center Beach Grid Container - Stretch Umbrellas to Full Right Edge! */
.beach-view-container { display: flex; flex-direction: column; background: #0284c710; overflow: auto; position: relative; flex: 1; width: 100%; }
.sea-wave-bar { background: linear-gradient(90deg, #0284c7, #06b6d4, #0284c7); background-size: 200% 200%; animation: waveAnimation 6s ease infinite; color: #fff; text-align: center; padding: 10px; font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 0.5px; width: 100%; }

@keyframes waveAnimation { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.sand-canvas { flex: 1; padding: 20px 24px; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; overflow-x: auto; overflow-y: auto; width: 100%; }
.beach-grid-rows { display: flex; flex-direction: column; gap: 16px; width: 100%; min-width: 100%; }
.grid-row { display: flex; align-items: center; gap: 16px; width: 100%; min-width: 100%; }
.row-header-badge { min-width: 70px; font-size: 13px; font-weight: 700; color: var(--text-muted); text-align: right; white-space: nowrap; flex-shrink: 0; }
.row-units { display: flex; gap: 10px; flex-wrap: nowrap; align-items: center; justify-content: space-between; flex: 1; width: 100%; }

/* Certified iOS Safari & Android Touch Targets for Seat Units */
.seat-unit {
    flex: 1;
    min-width: 54px;
    max-width: 82px;
    height: 72px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer !important;
    transition: all 0.2s ease;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    flex-shrink: 0;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(6, 182, 212, 0.4) !important;
}

.seat-unit * {
    pointer-events: none !important; /* Prevents inner spans from swallowing tap events on iOS Safari! */
}

.seat-unit:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
.seat-unit.selected { border-color: var(--primary-cyan) !important; box-shadow: 0 0 15px rgba(6, 182, 212, 0.6) !important; transform: translateY(-4px) scale(1.08); }
.seat-unit .seat-icon { font-size: 18px; }
.seat-unit .seat-number { font-family: var(--font-heading); font-size: 12px; font-weight: 700; }
.sunbed-count-tag { font-size: 10px; color: var(--text-muted); }

.seat-unit.status-available { border-color: rgba(16, 185, 129, 0.4); background: rgba(16, 185, 129, 0.12); }
.seat-unit.status-available .seat-number { color: var(--status-green); }
.seat-unit.status-occupied { border-color: rgba(239, 68, 68, 0.6); background: rgba(239, 68, 68, 0.18); }
.seat-unit.status-occupied .seat-number { color: var(--status-red); }
.seat-unit.status-reserved { border-color: rgba(245, 158, 11, 0.6); background: rgba(245, 158, 11, 0.18); }
.seat-unit.status-reserved .seat-number { color: var(--status-yellow); }

.seat-badge { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--accent-gold); }
.seat-status-pill { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.seat-status-pill.available { background: rgba(16, 185, 129, 0.2); color: var(--status-green); }
.seat-status-pill.occupied { background: rgba(239, 68, 68, 0.2); color: var(--status-red); }
.seat-status-pill.reserved { background: rgba(245, 158, 11, 0.2); color: var(--status-yellow); }

/* Form Elements */
.form-group-section { background: var(--bg-card); border: 1px solid var(--border-color); padding: 14px; border-radius: 12px; margin-bottom: 14px; }
.form-group-section h4 { font-size: 13px; font-family: var(--font-heading); color: var(--text-muted); margin-bottom: 10px; }
.input-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.input-field label { font-size: 12px; color: var(--text-muted); }
.input-field input, .input-field select { background: var(--input-bg); border: 1px solid var(--border-color); border-radius: 8px; padding: 8px 12px; color: var(--text-main); font-family: var(--font-body); font-size: 13px; outline: none; }
.input-field input:focus, .input-field select:focus { border-color: var(--primary-cyan); }

.sunbed-selector { display: flex; gap: 6px; margin-top: 6px; }
.sunbed-btn { flex: 1; background: var(--input-bg); border: 1px solid var(--border-color); color: var(--text-main); padding: 8px 0; border-radius: 8px; font-weight: 600; font-size: 12px; cursor: pointer; transition: all 0.2s ease; }
.sunbed-btn.active { background: var(--primary-cyan); color: #fff; border-color: var(--primary-cyan); }

.insp-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.insp-row { display: flex; justify-content: space-between; font-size: 13px; }
.insp-row span { color: var(--text-muted); }
.price-highlight { color: var(--accent-gold); font-size: 18px; }

/* Action Buttons */
.action-buttons { display: flex; flex-direction: column; gap: 8px; }
.btn { padding: 10px 14px; border-radius: 10px; border: none; font-family: var(--font-body); font-weight: 600; font-size: 13px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; gap: 6px; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn:hover { transform: translateY(-2px); }

.btn-success { background: var(--status-green); color: #fff; }
.btn-warning { background: var(--status-yellow); color: #0f172a; }
.btn-danger { background: var(--status-red); color: #fff; }
.btn-secondary { background: rgba(0, 0, 0, 0.08); color: var(--text-main); }
.btn-primary { background: var(--primary-cyan); color: #fff; }

.hidden { display: none !important; }

/* Dashboard Cards */
.dashboard-container { padding: 30px; width: 100%; overflow-y: auto; }
.dashboard-grid { display: flex; flex-direction: column; gap: 24px; max-width: 900px; }

.glass-dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(16px);
}

.glass-dashboard-card h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 16px; color: var(--heading-color); }
.summary-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--input-bg);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-mini span { font-size: 12px; color: var(--text-muted); }
.stat-mini strong { font-family: var(--font-heading); font-size: 22px; color: var(--accent-gold); }

/* Graph Placeholder */
.graph-placeholder {
    height: 180px;
    background: var(--input-bg);
    border-radius: 14px;
    border: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

.chart-wave-line {
    height: 90px;
    width: 100%;
    background: linear-gradient(180deg, rgba(6, 182, 212, 0.4), rgba(6, 182, 212, 0.0));
    clip-path: polygon(0 60%, 20% 40%, 40% 70%, 60% 20%, 80% 50%, 100% 30%, 100% 100%, 0 100%);
    border-top: 3px solid var(--primary-cyan);
}

.chart-months { display: flex; justify-content: space-between; margin-top: 12px; font-size: 12px; color: var(--text-muted); }

/* ULTRA-HIGH Z-INDEX FLOATING MODAL OVERLAY (Certified 100% Compatible with iOS Safari & Android Chrome) */
.modal-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: -webkit-fill-available !important;
    background: rgba(9, 13, 22, 0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    padding: 16px !important;
    box-sizing: border-box !important;
}

.modal-overlay.hidden {
    display: none !important;
}

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    max-height: 88vh;
    overflow-y: auto;
    padding: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    animation: modalSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1000000;
}

@keyframes modalSlideUp {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.modal-header h3 { font-family: var(--font-heading); font-size: 18px; color: var(--heading-color); }
.modal-close { background: transparent; border: none; color: var(--text-muted); font-size: 24px; cursor: pointer; padding: 4px 8px; line-height: 1; }
.modal-body p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }

/* Builder & Analytics Pages */
.builder-container, .analytics-container { padding: 30px; width: 100%; overflow-y: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
.stat-box { background: var(--bg-card); border: 1px solid var(--border-color); padding: 24px; border-radius: 16px; }
.stat-number { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--accent-gold); margin: 8px 0; }

/* SaaS Super Admin Table Styling */
.saas-kpi-card h4 { font-size: 13px; color: var(--text-muted); font-family: var(--font-heading); margin-bottom: 8px; }
.saas-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.saas-table th {
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--primary-cyan);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
    z-index: 9999999;
}

/* ==========================================================================
   STREAMLINED MOBILE & TABLET RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablets & Laptops (< 1024px) */
@media (max-width: 1024px) {
    .full-app-grid {
        grid-template-columns: 1fr;
        height: 100vh;
        overflow: hidden;
    }

    .glass-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 10px 14px;
        gap: 8px;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .nav-item {
        white-space: nowrap;
        padding: 6px 12px;
        font-size: 13px;
    }

    .owner-only-nav {
        display: flex;
        gap: 6px;
    }

    .glass-card-user {
        margin-top: 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 8px 12px;
    }

    .workspace-wrapper {
        height: calc(100vh - 120px);
        overflow: hidden;
    }

    .beach-map-workspace {
        width: 100%;
        height: 100%;
    }
}

/* Smartphone Native Touch Layout (< 768px) - Clean, Compact & Fast! */
@media (max-width: 768px) {
    .full-app-grid {
        grid-template-columns: 1fr;
        height: 100vh;
        overflow: hidden;
    }

    .glass-sidebar {
        padding: 8px 12px;
        gap: 6px;
    }

    .sidebar-brand .logo-icon {
        font-size: 20px;
        padding: 4px;
    }

    .sidebar-brand .logo-text h1 {
        font-size: 17px;
    }

    .glass-card-user {
        display: none; /* Hide heavy profile card on mobile top bar to save screen height! */
    }

    .inner-top-nav {
        padding: 6px 10px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
    }

    .beach-club-tag {
        padding: 4px 10px;
        font-size: 12px;
    }

    .beach-club-tag strong {
        font-size: 13px;
    }

    .date-picker-bar {
        padding: 4px 8px;
        font-size: 11px;
    }

    .date-picker-bar label {
        display: none; /* Hide 'Date / Reservation:' label text on mobile to keep date box compact */
    }

    .weather-date-widget {
        display: none; /* Hide weather widget on smartphone to maximize beach canvas area! */
    }

    .workspace-wrapper {
        height: calc(100vh - 90px);
        overflow: hidden;
    }

    .sand-canvas {
        padding: 12px 8px;
    }

    .row-units {
        gap: 6px;
        min-width: max-content;
    }

    .seat-unit {
        min-width: 52px;
        height: 64px;
    }

    .layout-card-grid {
        grid-template-columns: 1fr 1fr;
    }

    .modal-box {
        padding: 18px 14px;
        max-height: 92vh;
    }
}

/* Small Smartphone Screens (< 480px) */
@media (max-width: 480px) {
    .login-card-container, .admin-login-card {
        padding: 20px 16px;
        margin: 12px;
    }

    .seat-unit {
        min-width: 48px;
        height: 60px;
    }

    .layout-card-grid {
        grid-template-columns: 1fr;
    }

    .toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center;
    }
}
