:root {
    /* Color Palette - Luxury Hotel Aesthetic */
    --navy-950: #070D18;
    --navy-900: #0C1527;
    --navy-850: #101D36;
    --navy-800: #172746;
    --navy-700: #22375F;
    
    --gold-50: #FCF9EE;
    --gold-100: #F7F0D6;
    --gold-200: #EEDFA9;
    --gold-300: #E3CA75;
    --gold-400: #D8B74E;
    --gold-500: #C9A84C;
    --gold-600: #B38F36;
    --gold-700: #8E6F25;

    --teal-500: #1FA39D;
    --teal-600: #178F8A;
    --teal-50: #EDF9F8;

    --ink-900: #0F172A;
    --ink-800: #1E293B;
    --ink-700: #334155;
    --ink-600: #475569;
    --ink-500: #64748B;
    --ink-400: #94A3B8;

    --surface-bg: #F4F6F9;
    --surface-card: #FFFFFF;
    --surface-muted: #F8FAFC;
    --line: #E2E8F0;
    --line-dark: rgba(255, 255, 255, 0.08);

    --emerald: #10B981;
    --emerald-soft: #ECFDF5;
    --rose: #F43F5E;
    --rose-soft: #FFF1F2;
    --amber: #F59E0B;
    --amber-soft: #FFFBEB;
    --sky: #0EA5E9;
    --sky-soft: #F0F9FF;

    /* Shadows & Elevation */
    --shadow-subtle: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
    --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 12px 30px -4px rgba(15, 23, 42, 0.1), 0 4px 10px -2px rgba(15, 23, 42, 0.04);
    --shadow-dropdown: 0 16px 36px rgba(12, 21, 39, 0.16);

    /* Dimensions & Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --sidebar-w: 270px;
    --topbar-h: 70px;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    font-size: 14.5px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.admin-body {
    font-family: var(--font-sans);
    color: var(--ink-800);
    background-color: var(--surface-bg);
    min-height: 100vh;
    line-height: 1.55;
}

/* Typography styles */
h1, h2, h3, h4, h5 {
    color: var(--ink-900);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.luxury-title {
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}

a {
    color: var(--gold-600);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--gold-700);
}

code {
    background: var(--gold-50);
    color: var(--gold-700);
    border: 1px solid var(--gold-200);
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 0.85em;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* ==========================================================================
   SIDEBAR & BRANDING
   ========================================================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-850) 100%);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    z-index: 100;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-brand {
    padding: 1.5rem 1.4rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-bottom: 1px solid var(--line-dark);
}

.brand-crest {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--navy-950);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
    flex-shrink: 0;
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-300);
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-top: 2px;
}

.sidebar-hotel-badge {
    padding: 0.75rem 1.2rem;
    border-bottom: 1px solid var(--line-dark);
}

.hotel-pill {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.pulse-indicator {
    width: 7px;
    height: 7px;
    background-color: var(--gold-400);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

.hotel-pill-text {
    font-size: 0.78rem;
    color: var(--gold-200);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}

.sidebar-nav {
    flex: 1;
    padding: 1rem 0.75rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}
.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.nav-section-title {
    padding: 0.85rem 0.75rem 0.35rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    margin-bottom: 2px;
    transition: all 0.18s ease;
    text-decoration: none;
    position: relative;
}

.nav-item:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.07);
    text-decoration: none;
    transform: translateX(2px);
}

.nav-item.active {
    color: var(--gold-300);
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.04));
    border: 1px solid rgba(201, 168, 76, 0.28);
    font-weight: 600;
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3.5px;
    background: var(--gold-400);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 10px rgba(201, 168, 76, 0.8);
}

.nav-item svg {
    opacity: 0.75;
    flex-shrink: 0;
    transition: opacity 0.18s;
}

.nav-item:hover svg,
.nav-item.active svg {
    opacity: 1;
    color: var(--gold-400);
}

.nav-badge {
    margin-left: auto;
    background: linear-gradient(135deg, var(--rose), #E11D48);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(244, 63, 94, 0.4);
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid var(--line-dark);
    background: rgba(0, 0, 0, 0.2);
}

.admin-user-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
    color: var(--gold-300);
    border: 1.5px solid var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.admin-user-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-user-name {
    font-size: 0.84rem;
    font-weight: 600;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-user-role {
    font-size: 0.7rem;
    color: var(--gold-400);
    font-weight: 500;
}

/* ==========================================================================
   MAIN WRAPPER & TOPBAR
   ========================================================================== */
.main-wrapper {
    margin-left: var(--sidebar-w);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: margin-left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar {
    position: sticky;
    top: 0;
    height: var(--topbar-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.25rem;
    gap: 1.5rem;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03);
}

.topbar-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--ink-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.breadcrumb-sep {
    color: var(--ink-400);
}

.breadcrumb-active {
    color: var(--gold-600);
    font-weight: 600;
}

.topbar-title {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.2;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hotel-switcher {
    position: relative;
    display: flex;
    align-items: center;
}

.switcher-icon {
    position: absolute;
    left: 10px;
    color: var(--gold-600);
    pointer-events: none;
    display: flex;
    align-items: center;
}

.hotel-select {
    padding: 0.45rem 1rem 0.45rem 2.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background-color: var(--surface-muted);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--navy-900);
    cursor: pointer;
    transition: all 0.15s ease;
    min-width: 170px;
}

.hotel-select:focus,
.hotel-select:hover {
    border-color: var(--gold-500);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    outline: none;
}

.topbar-live-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ink-700);
}

.btn-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: 1px solid var(--line);
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-md);
    color: var(--ink-600);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
}

.btn-logout:hover {
    background: var(--rose-soft);
    border-color: rgba(244, 63, 94, 0.3);
    color: var(--rose);
}

.sidebar-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--navy-900);
    padding: 6px;
    border-radius: 8px;
    transition: background 0.15s;
}

.sidebar-toggle:hover {
    background: var(--line);
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(12, 21, 39, 0.6);
    backdrop-filter: blur(4px);
    z-index: 95;
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* ==========================================================================
   MAIN CONTENT LAYOUT
   ========================================================================== */
.main-content {
    flex: 1;
    padding: 2.25rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Alerts */
.alert {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-subtle);
}

.alert-success {
    background: var(--emerald-soft);
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-danger {
    background: var(--rose-soft);
    color: #9F1239;
    border: 1px solid #FECDD3;
}

.alert-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-dismiss {
    background: none;
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 0 4px;
}

.alert-dismiss:hover {
    opacity: 1;
}

.animate-fade {
    animation: fadeIn 0.25s ease-out;
}

@@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   CARDS & LUXURY CONTAINERS
   ========================================================================== */
.card {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    padding: 1.75rem;
    margin-bottom: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 168, 76, 0.35);
}

.card-title {
    font-size: 1.15rem;
    color: var(--navy-950);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.card-subtitle {
    font-size: 0.85rem;
    color: var(--ink-500);
    margin-top: -0.85rem;
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   STAT CARDS - LUXURY PALETTE
   ========================================================================== */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card-elite {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    padding: 1.6rem 1.75rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-elite::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-500);
    opacity: 0.85;
}

.stat-card-elite:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-400);
}

.stat-card-elite.stat-card-gold::after { background: var(--gold-500); }
.stat-card-elite.stat-card-teal::after { background: var(--teal-500); }
.stat-card-elite.stat-card-emerald::after { background: var(--emerald); }
.stat-card-elite.stat-card-rose::after { background: var(--rose); }

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
}

.stat-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-card-gold .stat-icon-wrapper {
    background: var(--gold-50);
    color: var(--gold-600);
    border: 1px solid var(--gold-200);
}
.stat-card-teal .stat-icon-wrapper {
    background: var(--teal-50);
    color: var(--teal-600);
    border: 1px solid #BEECE9;
}
.stat-card-emerald .stat-icon-wrapper {
    background: var(--emerald-soft);
    color: #059669;
    border: 1px solid #A7F3D0;
}
.stat-card-rose .stat-icon-wrapper {
    background: var(--rose-soft);
    color: var(--rose);
    border: 1px solid #FECDD3;
}

/* ==========================================================================
   PAGE HEADERS & ACTIONS
   ========================================================================== */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6rem;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.page-header-info h2 {
    font-size: 1.25rem;
    color: var(--navy-950);
}

.page-header-info p {
    color: var(--ink-500);
    font-size: 0.85rem;
    margin-top: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ==========================================================================
   TABLES - LUXURY & CLEAR DATA RENDERING
   ========================================================================== */
.table-container {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    text-align: left;
}

.table thead th {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border: none;
    white-space: nowrap;
}

.table tbody tr {
    border-bottom: 1px solid var(--line);
    transition: background-color 0.15s ease;
}

.table tbody tr:nth-child(even) {
    background: #FCFDFE;
}

.table tbody tr:hover {
    background: var(--gold-50);
}

.table td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    color: var(--ink-800);
}

/* Table Media & Cell Styles */
.table-thumb {
    width: 54px;
    height: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--line);
    background: #F1F5F9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    display: block;
}

.table-thumb-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold-300);
}

.table-thumb-placeholder {
    width: 54px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--surface-muted);
    border: 1px dashed var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-400);
    font-size: 0.7rem;
}

.cell-title {
    font-weight: 600;
    color: var(--navy-950);
    font-size: 0.92rem;
    display: block;
    margin-bottom: 2px;
}

.cell-sub {
    font-size: 0.78rem;
    color: var(--ink-500);
    display: block;
    max-width: 420px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table .actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.empty-state {
    text-align: center;
    padding: 3.5rem 1.5rem;
    color: var(--ink-500);
}

.empty-state-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-50);
    color: var(--gold-600);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.2);
}

.empty-state h4 {
    font-size: 1.05rem;
    color: var(--navy-900);
    margin-bottom: 0.25rem;
}

.empty-state p {
    font-size: 0.85rem;
    max-width: 360px;
    margin: 0 auto 1.25rem;
}

/* ==========================================================================
   BADGES & CHIPS
   ========================================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.badge-active,
.badge-approved,
.badge-success {
    background: var(--emerald-soft);
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.badge-inactive,
.badge-rejected,
.badge-danger {
    background: var(--rose-soft);
    color: #9F1239;
    border: 1px solid #FECDD3;
}

.badge-pending,
.badge-warn {
    background: var(--amber-soft);
    color: #92400E;
    border: 1px solid #FDE68A;
}

.badge-info,
.badge-light {
    background: var(--surface-muted);
    color: var(--navy-900);
    border: 1px solid var(--line);
}

.badge-gold {
    background: var(--gold-50);
    color: var(--gold-700);
    border: 1px solid var(--gold-200);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
    font-family: var(--font-sans);
    border: 1px solid transparent;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.35);
    border: 1px solid var(--gold-400);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.45);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-navy {
    background: var(--navy-900);
    color: #FFFFFF;
    border: 1px solid var(--navy-800);
}

.btn-navy:hover {
    background: var(--navy-800);
    color: #FFFFFF;
    transform: translateY(-1px);
}

.btn-danger {
    background: var(--rose-soft);
    color: var(--rose);
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.btn-danger:hover {
    background: var(--rose);
    color: #FFFFFF;
    border-color: var(--rose);
}

.btn-outline {
    background: #FFFFFF;
    color: var(--ink-700);
    border: 1px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--gold-500);
    color: var(--gold-700);
    background: var(--gold-50);
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    border-radius: var(--radius-sm);
    gap: 0.35rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.45rem;
    letter-spacing: 0.01em;
}

.form-control {
    width: 100%;
    padding: 0.65rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-family: var(--font-sans);
    background: #FFFFFF;
    color: var(--ink-900);
    transition: all 0.15s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}

.form-control-sm {
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
}

.form-control-color {
    width: 60px;
    height: 40px;
    padding: 4px;
    cursor: pointer;
    border-radius: var(--radius-md);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    appearance: none;
    -webkit-appearance: none;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--ink-500);
    margin-top: 0.35rem;
    display: block;
}

/* Luxury Image Upload Dropzone */
.image-upload-box {
    border: 2px dashed var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: var(--surface-muted);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.image-upload-box:hover {
    border-color: var(--gold-400);
    background: var(--gold-50);
}

.image-preview {
    margin-bottom: 0.85rem;
    position: relative;
    display: inline-block;
}

.image-preview img,
.image-preview-new img {
    max-width: 220px;
    max-height: 150px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    object-fit: cover;
    box-shadow: var(--shadow-card);
    display: block;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

/* Custom Checkbox Toggle */
.custom-toggle {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.custom-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--gold-600);
    cursor: pointer;
}

/* ==========================================================================
   TABS COMPONENT (FOR ABOUT HOTEL CONTENT)
   ========================================================================== */
.tabs-container {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 2rem;
}

.tabs-header {
    display: flex;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1.1rem 1.6rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
}

.tab-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: var(--gold-300);
    border-bottom-color: var(--gold-400);
    background: rgba(201, 168, 76, 0.08);
    font-weight: 600;
}

.tab-badge {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-size: 0.72rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}

.tab-btn.active .tab-badge {
    background: var(--gold-500);
    color: var(--navy-950);
}

.tab-pane {
    display: none;
    padding: 1.75rem;
}

.tab-pane.active {
    display: block;
}

.tab-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-description strong {
    font-size: 0.98rem;
    color: var(--navy-950);
    display: block;
}

.tab-description span {
    font-size: 0.82rem;
    color: var(--ink-500);
}

/* ==========================================================================
   PAGINATION & SEARCH
   ========================================================================== */
.search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-form .form-control {
    min-width: 260px;
    background: #FFFFFF;
}

.filter-tabs {
    display: flex;
    gap: 0.35rem;
    background: #FFFFFF;
    padding: 4px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.filter-tab-item {
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-600);
    text-decoration: none;
    transition: all 0.15s ease;
}

.filter-tab-item:hover {
    color: var(--navy-950);
    background: var(--surface-muted);
}

.filter-tab-item.active {
    background: var(--navy-900);
    color: var(--gold-300);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 2rem;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.6rem;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    text-decoration: none;
    border: 1px solid var(--line);
    background: #FFFFFF;
    transition: all 0.15s ease;
}

.page-link:hover {
    border-color: var(--gold-500);
    color: var(--gold-700);
    background: var(--gold-50);
}

.page-link.active {
    background: var(--navy-900);
    color: var(--gold-300);
    border-color: var(--navy-900);
}

.page-link.dots {
    border: none;
    background: transparent;
    cursor: default;
}

/* ==========================================================================
   DETAIL GRIDS & STARS
   ========================================================================== */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.detail-item {
    background: var(--surface-muted);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.detail-label {
    font-size: 0.72rem;
    color: var(--ink-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.25rem;
    display: block;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-950);
}

.stars {
    display: inline-flex;
    gap: 2px;
}

.star {
    color: var(--line);
    font-size: 1.1rem;
}

.star.filled {
    color: var(--gold-500);
}

/* ==========================================================================
   LOGIN PAGE LUXURY REDESIGN
   ========================================================================== */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: radial-gradient(circle at 50% 20%, var(--navy-850) 0%, var(--navy-950) 100%);
    padding: 1.5rem;
}

.login-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 440px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    position: relative;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}

.login-brand-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-crest {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    color: var(--navy-950);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
    margin-bottom: 0.85rem;
}

.login-brand {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy-950);
    letter-spacing: 0.06em;
}

.login-subtitle {
    color: var(--ink-500);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar.open + .sidebar-backdrop,
    .sidebar-backdrop.active {
        display: block;
        opacity: 1;
    }

    .main-wrapper {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: block;
    }

    .topbar {
        padding: 0 1.25rem;
    }

    .main-content {
        padding: 1.25rem;
    }

    .stat-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@@media (max-width: 640px) {
    .stat-cards {
        grid-template-columns: 1fr;
    }

    .topbar {
        padding: 0 1rem;
    }

    .topbar-title {
        font-size: 1.1rem;
    }

    .breadcrumb-nav {
        display: none;
    }

    .topbar-live-btn span,
    .btn-logout span {
        display: none;
    }

    .page-header {
        flex-direction: column;
        align-items: stretch;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .search-form {
        flex-direction: column;
        width: 100%;
    }

    .search-form .form-control {
        min-width: 100%;
    }

    .hotel-select {
        min-width: 130px;
    }

    .table thead th,
    .table td {
        padding: 0.75rem 0.85rem;
    }
}
