:root {
    --primary-color: #ee2a24;
    --primary-hover: #d21f1a;
    --primary-light: #fef0ef;
    --text-color: #1a1a1a;
    --text-muted: #6e6e6e;
    --bg-light: #f3f5f7;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #12824c;
    --success-bg: #e6f6ee;
    --warning-color: #d47a00;
    --warning-bg: #fff6eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s ease;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select {
    font-family: inherit;
    font-size: inherit;
}

/* Common Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header / Navbar */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 72px;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container h1 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-container h1 span {
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    margin-left: 6px;
    border-left: 1px solid var(--border-color);
    padding-left: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.nav-item:hover {
    color: var(--primary-color);
}

.nav-item-btn {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.nav-item-btn:hover {
    background-color: var(--primary-hover);
}

.user-profile-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
}

.user-profile-menu:hover {
    border-color: var(--text-color);
    box-shadow: var(--shadow-sm);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 12px;
}

/* Header Dropdown Menu Styling */
.header-menu-trigger:hover {
    background-color: var(--bg-light) !important;
    border-color: var(--text-color) !important;
    box-shadow: var(--shadow-sm);
}

.header-menu-trigger:hover .hamburger-line {
    background-color: var(--primary-color) !important;
}

.header-menu-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color) !important;
}

.header-menu-item.highlight:hover {
    background-color: var(--primary-hover) !important;
    color: var(--white) !important;
}

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

/* Hero Section (Search Banner) */
.hero-section {
    background: linear-gradient(135deg, #a71814 0%, #ee2a24 100%);
    color: var(--white);
    padding: 64px 0 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 90%);
    pointer-events: none;
}

.hero-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
    opacity: 0.9;
}

/* OYO Styled Search Widget */
.search-widget-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 10px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-field {
    flex: 1;
    position: relative;
    border-right: 1px solid var(--border-color);
    padding: 8px 16px;
    text-align: left;
}

.search-field:last-of-type {
    border-right: none;
}

.search-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.search-field input, .search-field select {
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    background: transparent;
}

.search-btn {
    background-color: #12824c;
    color: var(--white);
    border: none;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.search-btn:hover {
    background-color: #0e6c3e;
}

/* Quick Cities Bar */
.cities-bar {
    background-color: #f7f7f7;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.cities-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
}

.cities-list a {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-muted);
}

.cities-list a:hover, .cities-list li.active a {
    color: var(--primary-color);
}

/* Offers Grid */
.section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.offers-section {
    padding: 48px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.offer-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    background-color: var(--white);
    transition: var(--transition);
}

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

.offer-img {
    width: 120px;
    background-size: cover;
    background-position: center;
}

.offer-content {
    padding: 16px;
    flex: 1;
}

.offer-tag {
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 8px;
}

.offer-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.offer-desc {
    font-size: 12px;
    color: var(--text-muted);
}

/* Hotels Card Grid */
.hotels-section {
    padding: 48px 0;
    background-color: var(--bg-light);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hotel-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.hotel-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hotel-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(0, 0, 0, 0.75);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.hotel-card-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hotel-card-location {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hotel-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.rating-badge {
    background-color: var(--success-color);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 2px;
}

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

.hotel-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.hotel-price {
    display: flex;
    flex-direction: column;
}

.price-actual {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.price-strike {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.view-btn {
    background-color: var(--white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
}

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

/* Listings page styling */
.search-container {
    display: flex;
    gap: 24px;
    padding: 32px 0;
}

/* Filter Sidebar */
.filter-sidebar {
    width: 280px;
    flex-shrink: 0;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    align-self: flex-start;
}

.filter-group {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.filter-group-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

/* Horizontal listings layout */
.listings-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hotel-list-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    min-height: 220px;
}

.hotel-list-card:hover {
    box-shadow: var(--shadow-md);
}

.hotel-list-image {
    width: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.hotel-list-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-list-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 4px;
}

.hotel-list-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-color);
}

.hotel-list-address {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.hotel-list-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.amenity-badge {
    background-color: var(--bg-light);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

.hotel-list-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-discounted {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-color);
}

.price-original {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.price-off {
    color: var(--warning-color);
    font-size: 12px;
    font-weight: 700;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.btn-secondary {
    border: 1px solid var(--border-color);
    background-color: var(--white);
    color: var(--text-color);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--text-color);
    background-color: var(--bg-light);
}

.btn-primary {
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

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

/* Detail page styles */
.hotel-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    padding: 32px 0;
}

.gallery-container {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-light);
    margin-bottom: 24px;
    background-size: cover;
    background-position: center;
}

.detail-info-card {
    background-color: var(--white);
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.detail-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.detail-address {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.detail-desc {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* Sticky Booking Card */
.booking-sticky-card {
    position: sticky;
    top: 96px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    align-self: flex-start;
}

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

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

.booking-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.booking-form-group input, .booking-form-group select {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.booking-summary-row.total {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
    margin-bottom: 20px;
}

.coupon-row {
    background-color: var(--success-bg);
    color: var(--success-color);
    border: 1px dashed var(--success-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

/* Auth Screens styling */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 160px);
    background-color: var(--bg-light);
    padding: 40px 20px;
}

.auth-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.auth-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 32px 24px;
    text-align: center;
}

.auth-header h2 {
    font-size: 22px;
    font-weight: 800;
}

.auth-header p {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
}

.auth-body {
    padding: 32px 24px;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(238, 42, 36, 0.15);
}

.auth-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

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

.auth-footer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 24px;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 700;
}

.alert {
    background-color: #fce8e6;
    color: var(--primary-hover);
    border: 1px solid #faccd1;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* User Dashboard styles */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 32px;
    padding: 32px 0;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu-item {
    font-weight: 700;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-menu-item.active {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.sidebar-menu-item:hover:not(.active) {
    background-color: var(--bg-light);
}

.dashboard-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
}

.wallet-banner {
    background: linear-gradient(135deg, #25b768 0%, #12824c 100%);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.booking-history-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.booking-item-header {
    background-color: var(--bg-light);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.booking-item-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge.confirmed {
    background-color: var(--success-bg);
    color: var(--success-color);
}

.status-badge.pending {
    background-color: var(--warning-bg);
    color: var(--warning-color);
}

.status-badge.cancelled {
    background-color: #f5f5f5;
    color: var(--text-muted);
}

/* Footer Section */
.site-footer {
    background-color: #2b2b2b;
    color: #e0e0e0;
    padding: 48px 0 24px 0;
    margin-top: 64px;
    border-top: 4px solid var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mobile-sidebar-toggle-bar {
    display: none !important;
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 2px;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: #8c8c8c;
}

.mobile-filter-btn-container {
    display: none !important;
}

/* Responsive styles */
@media (max-width: 992px) {
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hotel-detail-grid {
        grid-template-columns: 1fr;
    }
    .booking-sticky-card {
        position: relative;
        top: 0;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
    .desktop-user-info {
        display: none !important;
    }
    .mobile-wallet-item, .mobile-wishlist-item {
        display: flex !important;
    }
    .hotels-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .offers-grid {
        display: flex !important;
        overflow-x: auto !important;
        gap: 16px;
        padding: 4px 4px 12px 4px !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .offers-grid::-webkit-scrollbar {
        display: none;
    }
    .offer-card {
        flex: 0 0 85% !important;
        scroll-snap-align: start;
        min-width: 260px;
    }
    .search-form {
        flex-direction: column;
    }
    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    .search-btn {
        width: 100%;
        margin-top: 8px;
    }
    .cities-list {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    .search-container {
        flex-direction: column;
    }
    .mobile-filter-btn-container {
        display: block !important;
    }
    .filter-sidebar {
        width: 100% !important;
        display: none;
    }
    .hotel-list-card {
        flex-direction: column;
    }
    .hotel-list-image {
        width: 100%;
        height: 200px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .customer-profile-card {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: left !important;
        padding: 16px !important;
        gap: 16px !important;
    }
    .customer-profile-card .user-avatar {
        margin: 0 !important;
    }
    .why-choose-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .mobile-sidebar-toggle-bar {
        display: block !important;
        width: 100% !important;
    }
    .logo-container h1 {
        font-size: 18px !important;
    }
    .logo-container h1 span {
        font-size: 10px !important;
        margin-left: 4px !important;
        padding-left: 6px !important;
    }
    .sidebar-menu {
        display: none !important;
        flex-direction: column !important;
        background: white !important;
        border: 1px solid var(--border-color) !important;
        border-radius: var(--radius-md) !important;
        padding: 8px !important;
        box-shadow: var(--shadow-lg) !important;
        position: absolute !important;
        z-index: 1000 !important;
        width: calc(100% - 40px) !important;
        left: 20px !important;
        margin-top: 4px !important;
    }
    .sidebar-menu.active {
        display: flex !important;
    }
    .sidebar-menu-item {
        flex: 1 1 auto !important;
        margin-bottom: 4px !important;
        padding: 12px 16px !important;
        font-size: 13.5px !important;
        font-weight: 700 !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        border-radius: var(--radius-sm) !important;
    }
    .customer-booking-body {
        flex-direction: column !important;
        gap: 16px !important;
    }
    .customer-booking-dates {
        flex-wrap: wrap !important;
        gap: 16px !important;
    }
    .customer-booking-actions {
        align-items: stretch !important;
        text-align: left !important;
    }
    .customer-booking-actions .status-badge {
        align-self: flex-start !important;
    }
    .customer-booking-actions div {
        justify-content: flex-start !important;
    }
}
