/* Enhanced Admin Panel Styles */

/* Login Modal */
#login-modal {
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.login-container {
    background: var(--surface);
    border-radius: 24px;
    padding: 48px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.login-header {
    margin-bottom: 32px;
}

.login-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 16px;
}

.login-header h2 {
    margin: 0 0 8px 0;
    color: var(--text);
    font-size: 24px;
    font-weight: 600;
}

.login-header p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form .form-group {
    position: relative;
}

.login-form .form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    z-index: 1;
}

.login-form input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid rgba(39, 50, 87, 0.12);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    background: var(--surface);
    color: var(--text);
    transition: all 0.2s ease;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(71, 102, 242, 0.1);
}

/* Standalone login page */
body.login-page {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    background: radial-gradient(circle at top, rgba(59,130,246,0.25), rgba(15,23,42,0.95)), #0f172a;
}

.login-wrapper {
    max-width: 420px;
    width: 100%;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(10px);
}

.login-brand {
    text-align: center;
    margin-bottom: 24px;
}

.login-brand h1 {
    margin: 12px 0 4px;
    font-size: 24px;
    color: #0f172a;
}

.login-brand p {
    color: #64748b;
    margin: 0;
}

body.login-page .login-card .login-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.login-card .login-form .form-group {
    margin-bottom: 16px;
}

.login-card .login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #475569;
    text-align: left;
}

.login-card .login-form input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    font-size: 14px;
    color: #0f172a;
    background: white;
}

.login-card .login-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

body.login-page .primary-btn.full-width {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35);
}

body.login-page .primary-btn.full-width:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.login-status {
    min-height: 20px;
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
    color: #dc2626;
}

.login-status.success {
    color: #16a34a;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

.login-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(71, 102, 242, 0.3);
}

/* Enhanced Admin Layout */
.admin-body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

#admin-interface {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 280px;
    background: var(--surface);
    border-right: 1px solid rgba(39, 50, 87, 0.08);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid rgba(39, 50, 87, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.sidebar-title {
    font-weight: 600;
    color: var(--text);
    font-size: 18px;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s ease;
    border-right: 3px solid transparent;
}

.nav-item:hover {
    background: rgba(71, 102, 242, 0.05);
    color: var(--primary);
}

.nav-item.active {
    background: rgba(71, 102, 242, 0.1);
    color: var(--primary);
    border-right-color: var(--primary);
    font-weight: 500;
}

.nav-item i {
    width: 20px;
    text-align: center;
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid rgba(39, 50, 87, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.user-details span:first-child {
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.user-details span:last-child {
    font-size: 12px;
    color: var(--muted);
}

.logout-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

/* Main Content Area */
.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Top Bar */
.admin-topbar {
    height: 80px;
    background: var(--surface);
    border-bottom: 1px solid rgba(39, 50, 87, 0.08);
    display: flex;
    align-items: center;
    padding: 0 32px;
    gap: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    font-size: 18px;
}

.sidebar-toggle:hover {
    background: rgba(71, 102, 242, 0.1);
    color: var(--primary);
}

.topbar-search {
    position: relative;
    flex: 1;
    max-width: 500px;
}

.topbar-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

.topbar-search input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid rgba(39, 50, 87, 0.08);
    border-radius: 12px;
    background: rgba(71, 102, 242, 0.02);
    color: var(--text);
    font-family: inherit;
    transition: all 0.2s ease;
}

.topbar-search input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(71, 102, 242, 0.1);
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Notifications */
.notification-center {
    position: relative;
}

.notification-btn {
    position: relative;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    font-size: 18px;
    transition: all 0.2s ease;
}

.notification-btn:hover {
    background: rgba(71, 102, 242, 0.1);
    color: var(--primary);
}

.notification-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(39, 50, 87, 0.08);
    display: none;
    z-index: 1000;
    margin-top: 8px;
}

.notification-header {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(39, 50, 87, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.mark-all-read {
    color: var(--primary);
    font-size: 12px;
    cursor: pointer;
}

.mark-all-read:hover {
    text-decoration: underline;
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 8px;
}

.quick-action-btn {
    background: rgba(71, 102, 242, 0.1);
    color: var(--primary);
    border: none;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Content Area */
.admin-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 32px;
    background: rgba(71, 102, 242, 0.01);
    height: 100vh;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.section-header h1 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: var(--text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* KPI Cards */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.kpi-card {
    background: var(--surface);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(39, 50, 87, 0.06);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.kpi-card.rooms .kpi-icon { background: linear-gradient(135deg, #10B981, #059669); }
.kpi-card.bookings .kpi-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.kpi-card.occupancy .kpi-icon { background: linear-gradient(135deg, #F59E0B, #D97706); }
.kpi-card.enquiries .kpi-icon { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }

.kpi-content h3 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.kpi-change {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 6px;
}

.kpi-change.positive {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.kpi-change.negative {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

/* Room Status Overview */
.room-status-overview {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(39, 50, 87, 0.06);
    box-shadow: var(--shadow);
}

.room-status-overview h2 {
    margin: 0 0 24px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.status-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(71, 102, 242, 0.02);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.status-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(39, 50, 87, 0.1);
}

.status-item.available {
    border-color: rgba(16, 185, 129, 0.2);
}

.status-item.available i {
    color: #10B981;
}

.status-item.occupied {
    border-color: rgba(239, 68, 68, 0.2);
}

.status-item.occupied i {
    color: #EF4444;
}

.status-item.pending {
    border-color: rgba(245, 158, 11, 0.2);
}

.status-item.pending i {
    color: #F59E0B;
}

.status-item.maintenance {
    border-color: rgba(245, 158, 11, 0.2);
}

.status-item.maintenance i {
    color: #F59E0B;
}

.status-item i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.status-count {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.status-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Charts */
.charts-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.chart-container {
    background: var(--surface);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(39, 50, 87, 0.06);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.chart-period {
    padding: 6px 12px;
    border: 1px solid rgba(39, 50, 87, 0.12);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 12px;
}

/* Activity Section */
.activity-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.activity-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(39, 50, 87, 0.06);
}

.activity-card h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(71, 102, 242, 0.02);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

/* Calendar Styles */
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.calendar-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.legend-color.confirmed { background: var(--primary); }
.legend-color.checked-in { background: #10B981; }
.legend-color.pending { background: #F59E0B; }

.calendar-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.calendar-filters select {
    padding: 8px 12px;
    border: 1px solid rgba(39, 50, 87, 0.12);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
}

/* Room Views */
.view-toggles {
    display: flex;
    background: rgba(71, 102, 242, 0.1);
    border-radius: 12px;
    padding: 4px;
}

.view-toggle {
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-toggle.active {
    background: var(--primary);
    color: white;
}

.room-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.filter-group select,
.filter-group input {
    padding: 8px 12px;
    border: 1px solid rgba(39, 50, 87, 0.12);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    min-width: 150px;
}

.rooms-view {
    display: none;
}

.rooms-view.active {
    display: block;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.room-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(39, 50, 87, 0.06);
    transition: all 0.2s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.room-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.room-number {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.room-status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.room-status.available { background: rgba(16, 185, 129, 0.1); color: #059669; }
.room-status.occupied { background: rgba(239, 68, 68, 0.1); color: #DC2626; }
.room-status.maintenance { background: rgba(245, 158, 11, 0.1); color: #D97706; }
.room-status.out_of_order { background: rgba(107, 114, 128, 0.1); color: #6B7280; }

.room-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.room-detail {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.room-detail .label {
    color: var(--muted);
}

.room-detail .value {
    color: var(--text);
    font-weight: 500;
}

.room-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

/* Enhanced Modals */
.modal-content.extra-large {
    max-width: 1200px;
}

.modal-actions {
    display: flex;
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .admin-sidebar {
        width: 240px;
    }
    
    .charts-row {
        grid-template-columns: 1fr;
    }
    
    .kpi-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        position: absolute;
        height: 100%;
        z-index: 1000;
        transition: transform 0.3s ease;
    }
    
    .admin-sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .admin-content {
        padding: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-section {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-controls,
    .room-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .topbar-search {
        order: 3;
        flex-basis: 100%;
        margin-top: 16px;
    }
}

/* Loading States */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: var(--muted);
}

.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(71, 102, 242, 0.2);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sortable Table Headers */
.data-table th[data-sort] {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.data-table th[data-sort]:hover {
    background: rgba(71, 102, 242, 0.05);
}

.data-table th[data-sort]::after {
    content: '\f0dc';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 8px;
    opacity: 0.3;
}

.data-table th[data-sort].asc::after {
    content: '\f0de';
    opacity: 1;
}

.data-table th[data-sort].desc::after {
    content: '\f0dd';
    opacity: 1;
}

/* Export Button */
.export-btn {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.export-btn:hover {
    background: #059669;
    color: white;
}

/* Period Selector */
.period-selector {
    padding: 8px 12px;
    border: 1px solid rgba(39, 50, 87, 0.12);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
}

.refresh-btn {
    background: rgba(71, 102, 242, 0.1);
    color: var(--primary);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.refresh-btn:hover {
    background: var(--primary);
    color: white;
}


.stat-label {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding: 16px 0;
}

.pagination-info {
    color: var(--muted);
    font-size: 14px;
}

.pagination-controls {
    display: flex;
    gap: 8px;
}

.pagination-btn {
    background: var(--surface);
    border: 1px solid rgba(39, 50, 87, 0.12);
    color: var(--text);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Admin Section Visibility */
.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

/* Dashboard Grid Layout */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.dashboard-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header i {
    color: var(--primary);
}

.badge {
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

/* Arrival/Departure Lists */
.arrival-list, .departure-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.arrival-item, .departure-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.arrival-item:last-child, .departure-item:last-child {
    border-bottom: none;
}

.guest-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guest-name {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.room-info {
    font-size: 12px;
    color: var(--muted);
}

.check-in-time, .check-out-time {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 8px;
    border-radius: 8px;
}

/* Enquiry List */
.enquiry-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.enquiry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.enquiry-item:last-child {
    border-bottom: none;
}

.enquiry-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.enquiry-details {
    font-size: 12px;
    color: var(--muted);
}

.status-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.pending {
    background: #FEF3C7;
    color: #92400E;
}

.status-badge.confirmed {
    background: #D1FAE5;
    color: #065F46;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

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

.action-btn.secondary {
    background: var(--accent);
    color: white;
}

.action-btn.tertiary {
    background: var(--surface-hover);
    color: var(--text);
    border: 1px solid var(--border);
}

.action-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* Room Types */
.room-types {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-type-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--surface-hover);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.room-type-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-name {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.type-capacity {
    font-size: 12px;
    color: var(--muted);
}

.type-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.total-rooms {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.occupancy-rate {
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
}

/* Room Cards List */
.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.room-card {
    background: var(--surface);
    border-radius: 8px;
    padding: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    height: 90px;
    overflow: hidden;
    cursor: pointer;
}

.room-card-compact {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 8px;
}

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

.room-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.room-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.room-status.available {
    background: #D1FAE5;
    color: #065F46;
}

.room-status.occupied {
    background: #FEF3C7;
    color: #92400E;
}

.room-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.room-type {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.floor-info {
    font-size: 11px;
    color: var(--muted);
}

.room-occupancy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.bed-indicators {
    display: flex;
    gap: 3px;
}

.bed-indicator {
    width: 12px;
    height: 8px;
    border-radius: 2px;
    border: 1px solid var(--border);
}

.occupancy-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.room-card.available::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

.room-card.occupied::before {
    background: linear-gradient(90deg, #F59E0B, #D97706);
}


.room-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.room-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 16px 8px 16px;
}

.room-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.room-number {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.floor-badge {
    font-size: 11px;
    background: var(--surface-hover);
    color: var(--muted);
    padding: 2px 8px;
    border-radius: 12px;
    width: fit-content;
}

.room-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-status.available {
    background: #D1FAE5;
    color: #065F46;
}

.room-status.occupied {
    background: #FEF3C7;
    color: #92400E;
}


.room-status span {
    font-size: 11px;
}

.room-card-body {
    padding: 0 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-type-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.type-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.capacity-info {
    font-size: 12px;
    color: var(--muted);
}

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

.occupancy-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
}

.occupancy-text {
    font-weight: 600;
    color: var(--text);
}

.occupancy-label {
    color: var(--muted);
    font-size: 10px;
}

.room-card-footer {
    padding: 8px 16px 12px 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.room-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
}

.room-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    flex: 1;
}

.room-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.room-type i {
    color: var(--primary);
}

.room-type small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.room-occupancy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bed-indicators {
    display: flex;
    gap: 8px;
}

.bed-indicator {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bed-indicator.available {
    border-color: #10B981;
    background: #D1FAE5;
}

.bed-indicator.occupied {
    border-color: #F59E0B;
    background: #FEF3C7;
}

.bed-indicator.maintenance {
    border-color: #EF4444;
    background: #FEE2E2;
}

.bed-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.bed-indicator.available::after {
    background: #10B981;
}

.bed-indicator.occupied::after {
    background: #F59E0B;
}

.bed-indicator.maintenance::after {
    background: #EF4444;
}

.occupancy-text {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.current-guests {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: var(--surface-hover);
    border-radius: 6px;
    border: 1px solid var(--border);
    font-size: 12px;
}

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

.guest-name {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.guest-checkout {
    font-size: 12px;
    color: var(--muted);
}

.maintenance-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 8px;
    background: #FEE2E2;
    border-radius: 6px;
    border: 1px solid #F87171;
    font-size: 12px;
}

.maintenance-reason {
    font-weight: 600;
    color: #991B1B;
    font-size: 14px;
}

.maintenance-eta {
    font-size: 12px;
    color: #DC2626;
}

.room-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-btn.small {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 6px;
}

/* Room Filters in Header */
.room-filters {
    display: flex;
    gap: 12px;
}

.room-filters select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    min-width: 150px;
}

.room-filters select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Booking Stats */
.booking-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.stat-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.stat-icon.confirmed,
.stat-icon.pending {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stat-icon.checked-in,
.stat-icon.in-house {
    background: linear-gradient(135deg, #10B981, #059669);
}

.stat-icon.checked-out {
    background: linear-gradient(135deg, #6B7280, #4B5563);
}

.stat-icon.occupancy {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

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

.stat-note {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.stat-note i {
    color: currentColor;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Booking Cards */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.booking-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 0;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.booking-card.confirmed::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.booking-card.confirmed {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08), transparent);
    border-color: rgba(59, 130, 246, 0.2);
}

.booking-card.checked-in::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

.booking-card.checked-in {
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.08), transparent);
    border-color: rgba(16, 185, 129, 0.2);
}

.booking-card.checked-out::before {
    background: linear-gradient(90deg, #6B7280, #4B5563);
}

.booking-card.checked-out {
    background: linear-gradient(180deg, rgba(107, 114, 128, 0.08), transparent);
    border-color: rgba(107, 114, 128, 0.2);
}

.booking-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 16px 0 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.booking-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-ref {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.booking-dates {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 12px;
}

.date-range {
    color: var(--text);
    font-weight: 500;
}

.nights {
    color: var(--muted);
    margin-top: 2px;
}

.booking-card-body {
    padding: 8px 16px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-primary-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.guest-section, .room-section {
    display: flex;
    flex-direction: column;
}

.guest-name, .room-number {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
}

.guest-email, .room-type {
    font-size: 12px;
    color: var(--muted);
}

.booking-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    flex-wrap: wrap;
    row-gap: 6px;
}

.guests-count {
    color: var(--muted);
}

.total-amount {
    font-weight: 600;
    color: var(--primary);
}

.booking-reference {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-reference strong {
    font-size: 16px;
    color: var(--text);
}

.booking-date {
    font-size: 14px;
    color: var(--muted);
}

.booking-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-status.confirmed {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.booking-status.checked-in {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.booking-status.checked-out {
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
}

.booking-status-control {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-status-control label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
}

.booking-status-control .status-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-status-control .status-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.booking-status-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.booking-status-control.inline {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

.booking-status-control.inline label {
    font-size: 11px;
    margin: 0;
    color: var(--muted);
}

.booking-meta span i {
    margin-right: 6px;
    color: var(--muted);
}

.booking-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.booking-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(59, 130, 246, 0.08);
    color: var(--text);
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.booking-chip i {
    color: var(--primary);
}

#bookings .section-header {
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(15,23,42,0.02));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    margin-bottom: 20px;
}

#bookings .booking-filters select,
#bookings .booking-filters input {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(59, 130, 246, 0.3);
}

#bookings .booking-filters select:focus,
#bookings .booking-filters input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.booking-progress {
    display: flex;
    gap: 12px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.booking-stage {
    flex: 1 1 140px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px dashed var(--border);
    font-size: 12px;
    color: var(--muted);
    transition: all 0.2s ease;
}

.booking-stage .stage-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.05);
    color: inherit;
}

.booking-stage.active {
    border-color: rgba(59, 130, 246, 0.5);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.08);
}

.booking-stage.active .stage-icon {
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
}

.booking-stage.completed {
    border-color: rgba(16, 185, 129, 0.4);
    color: #059669;
    background: rgba(16, 185, 129, 0.08);
}

.booking-stage.completed .stage-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #059669;
}

.booking-stage .stage-label {
    font-weight: 600;
}

.booking-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}

.booking-card-content .guest-details,
.booking-card-content .stay-details {
    overflow: hidden;
}

.booking-card-content .guest-details h4,
.booking-card-content .stay-details h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 8px 0;
    font-size: 14px;
}

.booking-card-content .guest-details p,
.booking-card-content .stay-details p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 4px 0;
    font-size: 13px;
}

.guest-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guest-info, .room-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.guest-info i, .room-info i {
    color: var(--primary);
    width: 16px;
}

.guest-info div, .room-info div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guest-name, .room-number {
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}

.guest-email, .room-type {
    font-size: 12px;
    color: var(--muted);
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.detail-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.detail-value {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
}

.detail-value.amount {
    color: var(--primary);
    font-size: 16px;
}

.detail-value.paid {
    color: #10B981;
}

.detail-value.partial {
    color: #F59E0B;
}

.booking-card-actions {
    display: flex;
    gap: 8px;
    padding: 8px 16px 16px 16px;
    justify-content: flex-end;
    border-top: 1px solid rgba(15,23,42,0.08);
    margin-top: auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
}

.action-btn.compact {
    padding: 8px;
    min-width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking Filters in Header */
.booking-filters {
    display: flex;
    gap: 12px;
}

.booking-filters select,
.booking-filters input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    min-width: 150px;
}

.booking-filters input {
    min-width: 200px;
}

.booking-filters select:focus,
.booking-filters input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Guest Cards */
.guests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.guest-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.guest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.guest-card.active::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

.guest-card.checked-out::before {
    background: linear-gradient(90deg, #6B7280, #4B5563);
}

.guest-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.guest-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.guest-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.guest-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guest-status.active {
    background: #D1FAE5;
    color: #065F46;
}

.guest-status.checked-out {
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
}

.guest-card-content {
    margin-bottom: 20px;
}

.guest-name {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.guest-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.detail-row i {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
}

.detail-row span {
    color: var(--text);
}

.guest-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Guest Filters */
.guest-filters {
    display: flex;
    gap: 12px;
}

.guest-filters select,
.guest-filters input {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    min-width: 150px;
}

.guest-filters input {
    min-width: 200px;
}

.guest-filters select:focus,
.guest-filters input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Enquiry Cards */
.enquiry-filters {
    display: flex;
    align-items: center;
    gap: 24px;
}

.filter-buttons {
    display: flex;
    gap: 8px;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: var(--surface-hover);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.enquiries-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.enquiry-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.enquiry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.enquiry-card.pending::before {
    background: linear-gradient(90deg, #F59E0B, #D97706);
}

.enquiry-card.confirmed::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.enquiry-card.converted::before {
    background: linear-gradient(90deg, #10B981, #059669);
}

.enquiry-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.enquiry-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.enquiry-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.enquiry-info .guest-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.enquiry-date {
    font-size: 14px;
    color: var(--muted);
}

.enquiry-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enquiry-status.pending {
    background: #FEF3C7;
    color: #92400E;
}

.enquiry-status.confirmed {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
}

.enquiry-status.converted {
    background: #D1FAE5;
    color: #065F46;
}

.enquiry-card-content {
    margin-bottom: 20px;
}

.enquiry-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-group .detail-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info,
.stay-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item,
.stay-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.contact-item i,
.stay-item i {
    color: var(--primary);
    width: 16px;
    flex-shrink: 0;
}

.contact-item span,
.stay-item span {
    color: var(--text);
}

.special-requests {
    padding: 12px;
    background: var(--surface-hover);
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
    font-style: italic;
}

.booking-reference {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ref-number {
    font-family: monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 8px;
    border-radius: 6px;
}

.enquiry-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Enquiry Filters Search */
#enquiry-search {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    min-width: 200px;
}

#enquiry-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.toast-success {
    border-left: 4px solid #10B981;
    color: #065F46;
}

.toast.toast-error {
    border-left: 4px solid #EF4444;
    color: #991B1B;
}

.toast.toast-info {
    border-left: 4px solid var(--primary);
    color: var(--primary-dark);
}

.toast i {
    font-size: 16px;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
    color: var(--muted);
}

.empty-state i {
    font-size: 48px;
    color: var(--border);
    margin-bottom: 20px;
}

.empty-state h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--text);
}

.empty-state p {
    margin: 0 0 24px 0;
    font-size: 14px;
}

/* Modal Forms */
.modal-content {
    max-width: 500px;
    width: 90%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.secondary-btn {
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    background: var(--surface-hover);
}

/* Modal Overlay Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay[style*="flex"] {
    display: flex !important;
}

.modal-container {
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.modal-content {
    max-height: calc(90vh - 140px);
    overflow-y: auto;
    padding: 0;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    position: sticky;
    top: 0;
    z-index: 1;
}

.modal-body {
    padding: 24px;
    background: var(--surface);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-form .form-group label {
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.modal-form .form-group input::placeholder,
.modal-form .form-group textarea::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--surface);
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* Guest Selection Styles */
.guest-selection {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.guest-selection select {
    flex: 1;
}

.toggle-guest-form {
    padding: 12px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.toggle-guest-form:hover {
    background: var(--primary-dark);
}

.toggle-guest-form.active {
    background: #EF4444;
}

.toggle-guest-form.active:hover {
    background: #DC2626;
}

.new-guest-section {
    padding: 16px;
    background: var(--surface-hover);
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-top: 16px;
}

.new-guest-section h5 {
    margin: 0 0 16px 0;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

/* Image Upload Styles */
.image-upload-container {
    position: relative;
    margin-top: 8px;
}

.image-upload-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.image-upload-preview {
    position: relative;
    width: 100%;
    height: 200px;
    border: 2px dashed var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    transition: all 0.3s ease;
    overflow: hidden;
}

.image-upload-preview:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.upload-placeholder {
    text-align: center;
    color: var(--text-secondary);
    pointer-events: none;
}

.upload-placeholder i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    color: var(--primary);
}

.upload-placeholder span {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
}

.upload-placeholder small {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.current-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-upload-preview:hover .image-overlay {
    opacity: 1;
}

.image-upload-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 3;
}

.image-upload-error {
    border-color: var(--error);
    background: var(--error-light);
}

.image-upload-success {
    border-color: var(--success);
    background: var(--success-light);
}

.modal-header .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--muted);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-header .close-btn:hover {
    background: var(--surface-hover);
    color: var(--text);
}

.modal-body {
    padding: 24px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.modal-body .form-group input,
.modal-body .form-group select,
.modal-body .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    background: var(--surface);
    color: var(--text);
    transition: all 0.2s ease;
}

.modal-body .form-group input:focus,
.modal-body .form-group select:focus,
.modal-body .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 98, 0, 0.1);
}

.modal-body .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-body .form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Enhanced Room Management Cards */
.room-management-card {
    background: var(--surface);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    height: 140px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    position: relative;
}

.room-management-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.room-management-card.occupied {
    border-left: 4px solid #e74c3c;
}

.room-management-card.available {
    border-left: 4px solid #27ae60;
}

.room-management-card.pending {
    border-left: 4px solid #f59e0b;
}

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

.room-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.room-info .room-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.room-info .room-type {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.2;
}

.floor-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    margin-top: 2px;
}

.room-status-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 500;
}

.room-status-badge.available {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.room-status-badge.occupied {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.room-status-badge.pending {
    background: rgba(245, 158, 11, 0.12);
    color: #d97706;
}

.room-status-badge.out-of-order {
    background: rgba(107, 114, 128, 0.12);
    color: #4b5563;
}

.room-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    min-height: 0;
}

.occupancy-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.occupancy-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.occupancy-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

.bed-indicators-row {
    display: flex;
    gap: 4px;
}

.bed-indicator {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    border: 1px solid var(--border);
}

.bed-indicator.occupied {
    background: #e74c3c;
    border-color: #e74c3c;
}

.bed-indicator.available {
    background: #27ae60;
    border-color: #27ae60;
}

.current-guests {
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.guests-label {
    font-size: 12px;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}

.guests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.guest-chip {
    background: var(--primary-light);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.room-card-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    padding-top: 6px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    flex-shrink: 0;
}

.action-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    font-size: 12px;
}

.action-btn:hover {
    transform: translateY(-1px);
}

.action-btn.edit {
    color: var(--primary);
    border-color: var(--primary);
}

.action-btn.edit:hover {
    background: var(--primary);
    color: white;
}

.action-btn.view {
    color: #3498db;
    border-color: #3498db;
}

.action-btn.view:hover {
    background: #3498db;
    color: white;
}

.action-btn.delete {
    color: #e74c3c;
    border-color: #e74c3c;
}

.action-btn.delete:hover {
    background: #e74c3c;
    color: white;
}

/* Update rooms list layout for new cards */
.rooms-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 20px 0;
}

/* Website Room Types Management */
.website-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.website-room-card {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.website-room-card.hidden-room {
    border-style: dashed;
    opacity: 0.85;
}

.website-room-card.hidden-room::after {
    content: 'Hidden from website';
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.website-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.website-room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.room-price {
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.room-content {
    padding: 20px;
}

.room-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.room-description {
    margin: 0 0 16px 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.room-details {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.room-capacity,
.room-order {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
}

.room-capacity i,
.room-order i {
    color: var(--primary);
}

.room-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.website-room-card .action-btn {
    min-width: 36px;
    height: 36px;
    font-size: 14px;
}

.action-btn.is-loading {
    opacity: 0.6;
    pointer-events: none;
}
#bookings {
    background: linear-gradient(180deg, rgba(15,23,42,0.03), rgba(59,130,246,0.05));
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(59, 130, 246, 0.12);
    box-shadow: 0 25px 45px rgba(15, 23, 42, 0.08);
}

#bookings .bookings-list {
    margin-top: 24px;
}

#bookings .booking-stats {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 20px;
    padding: 20px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

#bookings .booking-stats .stat-card {
    background: rgba(255, 255, 255, 0.95);
}

#bookings .booking-stats .stat-icon.pending {
    background: linear-gradient(135deg, #93c5fd, #60a5fa);
}

#bookings .booking-stats .stat-icon.in-house {
    background: linear-gradient(135deg, #34d399, #10b981);
}

#bookings .booking-stats .stat-icon.checked-out {
    background: linear-gradient(135deg, #cbd5f5, #94a3b8);
}

#bookings .booking-stats .stat-icon.occupancy {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}
