/* Sunset Luxury Farmhouse Theme Override */
/* Primary Color: #EEBE31 (Golden Yellow) */

:root {
    --sunset-primary: #EEBE31;
    --sunset-dark: #2c2c2c;
    --sunset-light-bg: #fff9e6;
    --sunset-white: #ffffff;
    --bs-primary: #EEBE31;
    --bs-primary-rgb: 238, 190, 49;
}

/* Global Button Primary Override */
.btn-primary {
    background-color: #EEBE31 !important;
    border-color: #EEBE31 !important;
    color: #2c2c2c !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #d9a821 !important;
    border-color: #d9a821 !important;
    color: #2c2c2c !important;
}

/* Body Background */
body {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 50%, #fff9e6 100%) !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Primary Color Overrides */
.text-primary,
.bg-primary,
.border-primary {
    color: #EEBE31 !important;
}

/* Secondary Background */
.bg-secondary {
    background-color: rgba(238, 190, 49, 0.15) !important;
}

/* Dark Background */
.bg-dark {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

/* Links */
a {
    color: #EEBE31;
}

a:hover {
    color: #d9a821;
}

/* Navbar */
.navbar-brand h2 {
    color: #EEBE31 !important;
    font-family: 'Cinzel', serif !important;
}

/* Remove background hover effect from all navbar links */
.navbar .nav-link,
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    text-decoration: none !important;
}

.navbar .navbar-nav .nav-item {
    border: none !important;
    box-shadow: none !important;
    background: none !important;
}

/* Navbar links - dark before scroll, white after scroll with bg-dark class */
.navbar:not(.bg-dark) .nav-link {
    color: #2c2c2c !important;
}

.navbar:not(.bg-dark) .nav-link.active {
    color: #EEBE31 !important;
}

.navbar:not(.bg-dark) .nav-link:hover {
    color: #EEBE31 !important;
}

/* When navbar becomes scrolled (bg-dark class added), use white text */
.navbar.bg-dark .nav-link {
    color: #ffffff !important;
}

.navbar.bg-dark .nav-link.active {
    color: #EEBE31 !important;
}

.navbar.bg-dark .nav-link:hover {
    color: #EEBE31 !important;
}

/* Dropdown toggle */
.navbar:not(.bg-dark) .dropdown-toggle {
    color: #2c2c2c !important;
}

.navbar.bg-dark .dropdown-toggle {
    color: #ffffff !important;
}

/* Navbar toggler (hamburger menu) visibility */
.navbar:not(.bg-dark) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 44, 44, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar.bg-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar:not(.bg-dark) .navbar-toggler {
    border-color: #2c2c2c !important;
}

.navbar.bg-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif !important;
    color: #2c2c2c;
}

.title h1,
.title h5 {
    font-family: 'Cinzel', serif !important;
}

/* Body Text */
p, .list-group-item {
    font-family: 'Cormorant Garamond', serif !important;
}

/* Buttons with Golden Theme */
.btn-lg-square {
    background: transparent;
    border-color: #EEBE31 !important;
    color: #EEBE31;
}

.btn-lg-square:hover {
    background: #EEBE31 !important;
    color: #2c2c2c !important;
}

/* Service Items */
.service-item {
    border-color: #EEBE31;
}

/* Team Cards */
.team-item {
    border-color: #EEBE31;
}

.team-before span,
.team-after span {
    color: #EEBE31 !important;
}

/* Forms */
.form-control:focus {
    border-color: #EEBE31 !important;
    box-shadow: 0 0 0 0.2rem rgba(238, 190, 49, 0.25) !important;
}

/* Icons and Checkmarks */
.fa-check-circle {
    color: #EEBE31 !important;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(238, 190, 49, 0.3);
    border-radius: 50%;
}

/* Footer */
.footer {
    background-color: #ffffff !important;
    background-image: none !important;
    color: #2c2c2c;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer a {
    color: #EEBE31 !important;
}

.footer a:hover {
    color: #d9a821 !important;
}

/* Dropdown */
.dropdown-item,
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
    background: none !important;
    background-color: transparent !important;
}

.dropdown-item:hover {
    color: #EEBE31 !important;
}

/* Back to Top Button */
.back-to-top {
    background-color: #EEBE31 !important;
    border-color: #EEBE31 !important;
    color: #2c2c2c !important;
}

.back-to-top:hover {
    background-color: #d9a821 !important;
}

/* Testimonial */
.testimonial-carousel .owl-dot.active {
    background-color: #EEBE31 !important;
}

/* Custom Accent Elements */
.border-2 {
    border-width: 2px !important;
}

/* Spinner */
.spinner-grow {
    color: #EEBE31 !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(255, 249, 230, 0.9), rgba(238, 190, 49, 0.1));
}

.breadcrumb-item.active {
    color: #EEBE31 !important;
}

/* Breadcrumb links visibility */
.breadcrumb-item a {
    color: #2c2c2c !important;
}

.breadcrumb-item a:hover {
    color: #EEBE31 !important;
}

/* Breadcrumb separator visibility */
.breadcrumb-item + .breadcrumb-item::before {
    color: #2c2c2c !important;
}

/* Info Card Styling */
.info-card {
    background: #ffffff;
    border: 2px solid #EEBE31;
    box-shadow: 0 10px 40px rgba(238, 190, 49, 0.15);
}

/* Divider */
.divider {
    background: linear-gradient(90deg, transparent, #EEBE31, transparent);
}

/* Booking Calendar Styles */
.booking-calendar-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(238, 190, 49, 0.15);
    border: 2px solid rgba(238, 190, 49, 0.2);
    overflow: visible;
    width: 100%;
    max-width: 100%;
}

.admin-calendar-view {
    width: 100%;
    max-width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #EEBE31 0%, #d4a228 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.3);
}

.current-month {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #2c2c2c;
    margin: 0;
    font-weight: 600;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(238, 190, 49, 0.2);
}

.calendar-header .btn-outline-primary {
    border: none !important;
    background: transparent !important;
    color: #EEBE31 !important;
    box-shadow: none !important;
    padding: 10px 15px;
}

.calendar-header .btn-outline-primary:hover,
.calendar-header .btn-outline-primary:focus,
.calendar-header .btn-outline-primary:active {
    border: none !important;
    background: rgba(238, 190, 49, 0.1) !important;
    color: #EEBE31 !important;
    box-shadow: none !important;
    transform: scale(1.1);
}

.calendar-header .btn-outline-primary:focus {
    outline: none !important;
    box-shadow: none !important;
}

.calendar-grid {
    width: 100%;
    max-width: 100%;
}

/* Desktop - Make calendar fill viewport */
@media (min-width: 992px) {
    .calendar-grid {
        min-height: calc(100vh - 450px);
    }

    .calendar-days {
        min-height: calc(100vh - 500px);
    }

    .admin-calendar-view .calendar-days,
    .farmhouse-calendar-grid .farmhouse-days-grid {
        min-height: calc(100vh - 420px);
    }
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.weekday-header {
    text-align: center;
    font-weight: 600;
    padding: 10px 5px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    width: 100%;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 15px 5px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    overflow: visible;
    white-space: nowrap;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px;
}

.calendar-day:not(.empty):not(.past):hover {
    border-color: #EEBE31;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.2);
}

.calendar-day:not(.empty):not(.past):hover .calendar-quick-book {
    opacity: 1;
    visibility: visible;
}

/* Quick Book Buttons on Calendar */
.calendar-quick-book {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.quick-book-btn {
    background: #EEBE31;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #2c2c2c;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(238, 190, 49, 0.4);
}

.quick-book-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.6);
    background: #d9a821;
}

.quick-book-btn:active {
    transform: scale(1.05);
}

.calendar-day.selected {
    border-color: #EEBE31 !important;
    background: rgba(238, 190, 49, 0.1) !important;
}

.calendar-day.past {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.empty {
    border: none;
    cursor: default;
}

.calendar-day.available {
    border-color: #e0e0e0;
}

.calendar-day.half {
    background: rgba(255, 193, 7, 0.1);
    border-color: #FFC107;
}

.calendar-day.full {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    cursor: not-allowed;
}

.day-number {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
}

.status-badge {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.status-badge.full {
    background: #f44336;
    color: #ffffff;
}

.status-badge.half {
    background: #FFC107;
    color: #2c2c2c;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(238, 190, 49, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid;
}

.legend-box.available {
    background: #ffffff;
    border-color: #e0e0e0;
}

.legend-box.half {
    background: rgba(255, 193, 7, 0.1);
    border-color: #FFC107;
}

.legend-box.full {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
}

/* Booking Details Container */
.booking-details-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(238, 190, 49, 0.15);
    border: 2px solid rgba(238, 190, 49, 0.2);
    margin-bottom: 20px;
}

.no-selection {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.selected-date-info {
    background: rgba(238, 190, 49, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.slot-selection {
    margin-top: 20px;
}

.slot-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    background: #ffffff;
}

.slot-card:hover:not(.booked) {
    border-color: #EEBE31;
    background: rgba(238, 190, 49, 0.05);
}

.slot-card.booked {
    opacity: 0.5;
    background: #f5f5f5;
}

.slot-book-btn {
    margin-left: auto;
    padding: 10px 20px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600;
    white-space: nowrap;
}

.slot-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.3);
}

.slot-icon {
    font-size: 32px;
    color: #EEBE31;
    min-width: 40px;
}

.slot-info h6 {
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #2c2c2c;
}

.slot-info p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #666;
}

.booked-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f44336;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(238, 190, 49, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(238, 190, 49, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #2c2c2c;
}

.contact-item i {
    color: #EEBE31;
    font-size: 18px;
    min-width: 20px;
}

/* Mobile Action Buttons */
.mobile-action-buttons {
    display: none;
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    body {
        overflow-x: hidden;
        padding-bottom: 60px; /* Space for fixed mobile action buttons */
    }

    .container-fluid, .container {
        overflow-x: hidden;
    }

    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    .mobile-action-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 12px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        gap: 12px;
    }

    .btn-mobile {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 14px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-mobile i {
        font-size: 20px;
    }

    .btn-mobile.btn-whatsapp {
        background: #EEBE31;
        color: #2c2c2c;
        box-shadow: 0 4px 15px rgba(238, 190, 49, 0.3);
    }

    .btn-mobile.btn-whatsapp:active {
        transform: scale(0.95);
    }

    .btn-mobile.btn-call {
        background: #ffffff;
        color: #2c2c2c;
        border: 2px solid #EEBE31;
        box-shadow: 0 4px 15px rgba(238, 190, 49, 0.2);
    }

    .btn-mobile.btn-call:active {
        transform: scale(0.95);
    }

    /* Add padding to prevent content hiding behind fixed action buttons on mobile */
    body {
        padding-bottom: 80px;
    }

    /* Container spacing adjustments for mobile */
    .container.py-5 {
        padding-bottom: 2rem !important;
    }

    .container-fluid.py-5 {
        padding-bottom: 2rem !important;
    }

    /* Mobile Calendar Improvements */
    .booking-calendar-container {
        padding: 8px;
        margin-bottom: 20px;
        overflow: visible;
        box-sizing: border-box;
    }

    .booking-details-container {
        padding: 20px;
        margin-bottom: 20px;
    }

    /* Fix row and column gutters on mobile */
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 1.5rem;
    }

    /* Ensure columns stack properly */
    .col-lg-8, .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
    }

    .calendar-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .calendar-header h3 {
        font-size: 20px !important;
    }

    .calendar-grid {
        gap: 6px;
        overflow: visible;
    }

    .calendar-day {
        padding: 6px 4px;
        min-height: 65px;
        border-radius: 10px;
    }

    .calendar-day:not(.empty):not(.past):active {
        transform: scale(0.95);
    }

    .day-number {
        font-size: 15px;
        margin-bottom: 2px;
    }

    .status-badge {
        font-size: 7px;
        padding: 2px 4px;
        margin-top: 2px;
    }

    /* Make quick book buttons always visible and larger on mobile */
    .calendar-quick-book {
        opacity: 1;
        visibility: visible;
        bottom: 3px;
        gap: 6px;
    }

    .quick-book-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
        box-shadow: 0 3px 10px rgba(238, 190, 49, 0.5);
    }

    .quick-book-btn:active {
        transform: scale(0.9);
    }

    .calendar-legend {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 20px;
        padding-top: 15px;
    }

    .legend-item {
        font-size: 12px;
    }

    .legend-box {
        width: 18px;
        height: 18px;
    }

    /* Slot Cards Mobile */
    .slot-card {
        padding: 18px 15px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .slot-icon {
        font-size: 28px;
        min-width: 35px;
    }

    .slot-info h6 {
        font-size: 15px;
    }

    .slot-info p {
        font-size: 13px;
    }

    .slot-book-btn {
        padding: 12px 16px !important;
        font-size: 13px !important;
    }

    .booked-badge {
        font-size: 10px;
        padding: 5px 8px;
    }

    /* Contact Info Card */
    .contact-info-card {
        padding: 20px;
    }

    .contact-item {
        font-size: 14px;
        padding: 10px 0;
    }

    .contact-item i {
        font-size: 16px;
    }

    /* Booking info section text */
    .title h5 {
        font-size: 14px !important;
    }

    .title h1 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .text-center p {
        font-size: 14px !important;
        padding: 0 10px;
    }

    /* Selected Date Info */
    .selected-date-info {
        padding: 15px;
        margin-bottom: 20px;
    }

    .selected-date-info h5 {
        font-size: 18px !important;
    }

    .no-selection i {
        font-size: 40px !important;
    }

    .no-selection p {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile adjustments */
    .container {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .container-fluid {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    /* Booking info text for small screens */
    .title h1 {
        font-size: 20px !important;
    }

    .title h5 {
        font-size: 13px !important;
    }

    .text-center p {
        font-size: 13px !important;
    }

    .booking-calendar-container {
        padding: 12px;
    }

    .calendar-header h3 {
        font-size: 18px !important;
    }

    .calendar-header .btn-outline-primary {
        padding: 8px 12px;
        font-size: 14px;
    }

    .calendar-grid {
        gap: 6px;
    }

    .calendar-day-header {
        font-size: 11px;
        padding: 8px 2px;
        font-weight: 700;
        overflow: visible;
        white-space: nowrap;
    }

    .calendar-day {
        padding: 5px 3px;
        min-height: 60px;
        border-radius: 8px;
    }

    .day-number {
        font-size: 14px;
        font-weight: 700;
    }

    .status-badge {
        font-size: 6px;
        padding: 2px 3px;
    }

    .quick-book-btn {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .calendar-legend {
        gap: 10px;
    }

    .legend-item {
        font-size: 11px;
    }

    .legend-box {
        width: 16px;
        height: 16px;
    }

    /* Booking Details */
    .booking-details-container {
        padding: 15px;
    }

    .selected-date-info h5 {
        font-size: 16px !important;
    }

    .slot-card {
        padding: 15px 12px;
        flex-wrap: wrap;
    }

    .slot-icon {
        font-size: 24px;
        min-width: 30px;
    }

    .slot-info {
        flex: 1;
        min-width: 120px;
    }

    .slot-info h6 {
        font-size: 14px;
    }

    .slot-info p {
        font-size: 12px;
    }

    .slot-book-btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 10px;
        padding: 10px 14px !important;
        font-size: 12px !important;
    }

    .contact-info-card {
        padding: 15px;
    }

    .contact-info-card h5 {
        font-size: 16px !important;
    }

    .contact-item {
        font-size: 13px;
    }
}

/* New Calendar Design with Visual Slot Indicators */
.calendar-day-new {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 4px;
    min-height: 90px;
    max-width: 100%;
    overflow: visible;
}

.calendar-day-new .day-number {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}

.calendar-day-new:not(.empty):not(.past):hover {
    border-color: #EEBE31;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 190, 49, 0.25);
}

.calendar-day-new.selected {
    border-color: #EEBE31 !important;
    background: rgba(238, 190, 49, 0.05) !important;
    box-shadow: 0 4px 16px rgba(238, 190, 49, 0.2);
}

.calendar-day-new.past {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f9f9f9;
}

.calendar-day-new.empty {
    border: none;
    cursor: default;
    min-height: 0;
}

/* Slot Indicators - Always Visible */
.slot-indicators {
    display: flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
}

.slot-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    font-size: 11px;
    transition: all 0.2s ease;
}

.slot-indicator.available {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1.5px solid #4CAF50;
}

.slot-indicator.booked {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1.5px solid #f44336;
}

/* Quick Book Overlay - Shows on Hover */
.quick-book-overlay {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: rgba(238, 190, 49, 0.95);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(238, 190, 49, 0.4);
}

.calendar-day-new:not(.past):hover .quick-book-overlay {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.quick-book-btn-new {
    background: #ffffff;
    border: 2px solid #2c2c2c;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #2c2c2c;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 100px;
    justify-content: center;
}

.quick-book-btn-new:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: #2c2c2c;
    color: #ffffff;
}

.quick-book-btn-new:active {
    transform: scale(0.98);
}

.quick-book-btn-new i {
    font-size: 14px;
}

/* Fancy Calendar Design */
.calendar-nav-btn {
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #EEBE31;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav-btn:hover {
    background: rgba(238, 190, 49, 0.1);
    transform: scale(1.1);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

.calendar-day-fancy {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    cursor: pointer;
    position: relative;
    padding: 8px 4px;
    min-height: 55px;
    max-width: 100%;
    overflow: visible;
    transition: all 0.2s ease;
}

.calendar-day-fancy:not(.empty):not(.past):hover {
    border-color: #EEBE31;
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.2);
}

.calendar-day-fancy.selected {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50 !important;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.calendar-day-fancy.past {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f9fafb;
}

.calendar-day-fancy.empty {
    border: none;
    cursor: default;
    min-height: 0;
}

.calendar-day-fancy .day-number {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 4px;
}

.slot-indicators-fancy {
    display: flex;
    gap: 4px;
    margin-top: 6px;
}

.dot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.dot-indicator.day-booked {
    background-color: #ef4444;
}

.dot-indicator.night-booked {
    background-color: #3b82f6;
}

.calendar-legend-fancy {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.legend-item-fancy {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    color: #6b7280;
}

/* Booking Modal Styles */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.booking-modal {
    background: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid rgba(238, 190, 49, 0.2);
}

.booking-modal .modal-header h3 {
    margin: 0;
    color: #2c2c2c;
    font-size: 24px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.2s ease;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.modal-booking-summary {
    background: rgba(238, 190, 49, 0.1);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(238, 190, 49, 0.2);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #2c2c2c;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item i {
    color: #EEBE31;
    font-size: 18px;
    min-width: 24px;
}

.booking-form {
    padding: 30px;
}

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

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #EEBE31;
    box-shadow: 0 0 0 3px rgba(238, 190, 49, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
    justify-content: flex-end;
}

.modal-actions .btn {
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-actions .btn-outline-primary {
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #e0e0e0;
}

.modal-actions .btn-outline-primary:hover {
    background: #f5f5f5;
    border-color: #2c2c2c;
}

.modal-actions .btn-primary {
    background: #EEBE31;
    border: 2px solid #EEBE31;
    color: #2c2c2c;
}

.modal-actions .btn-primary:hover {
    background: #d9a821;
    border-color: #d9a821;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.3);
}

/* Updated Legend */
.legend-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-indicator i {
    font-size: 16px;
}

/* Mobile Responsive for New Calendar */
@media (max-width: 768px) {
    .booking-calendar-container {
        box-sizing: border-box;
        overflow: visible;
        padding: 8px;
    }

    .calendar-day-header {
        font-size: 11px;
        padding: 8px 1px;
        box-sizing: border-box;
        overflow: visible;
        white-space: nowrap;
    }

    .calendar-grid {
        gap: 3px;
        width: 100%;
        box-sizing: border-box;
        min-height: 410px;
        overflow: visible;
        padding: 2px;
    }

    .calendar-day-new {
        min-height: 65px;
        padding: 3px 1px;
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
    }

    .calendar-day-new .day-number {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .slot-indicator {
        width: 16px;
        height: 16px;
        font-size: 7px;
        border-width: 1px;
    }

    .slot-indicators {
        gap: 2px;
        padding-top: 2px;
    }

    .quick-book-btn-new {
        padding: 6px 12px;
        font-size: 11px;
        min-width: 85px;
    }

    .quick-book-btn-new i {
        font-size: 12px;
    }

    /* Fancy Calendar Responsive */
    .calendar-day-fancy {
        min-height: 50px;
        padding: 4px 2px;
        border-radius: 12px;
        border-width: 1.5px;
    }

    .calendar-day-fancy .day-number {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .dot-indicator {
        width: 10px;
        height: 10px;
    }

    .slot-indicators-fancy {
        gap: 3px;
        margin-top: 4px;
    }

    .calendar-legend-fancy {
        gap: 20px;
        margin-top: 16px;
        padding-top: 16px;
    }

    .legend-item-fancy {
        font-size: 12px;
        gap: 6px;
    }

    .booking-modal {
        max-width: 95%;
        margin: 10px;
    }

    .booking-modal .modal-header {
        padding: 20px;
    }

    .booking-modal .modal-header h3 {
        font-size: 20px;
    }

    .modal-booking-summary {
        padding: 15px 20px;
    }

    .booking-form {
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .booking-calendar-container {
        padding: 4px;
        box-sizing: border-box;
        overflow: visible;
    }

    .calendar-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .calendar-header h3 {
        font-size: 17px !important;
    }

    .calendar-header .btn-outline-primary {
        padding: 8px 10px;
    }

    .calendar-day-header {
        font-size: 9px;
        padding: 6px 1px;
        font-weight: 700;
        overflow: visible;
        white-space: nowrap;
    }

    .calendar-grid {
        gap: 1.5px;
        width: 100%;
        box-sizing: border-box;
        min-height: 322px;
        overflow: visible;
        padding: 1px;
    }

    .calendar-day-new {
        min-height: 52px;
        padding: 2px 0px;
        box-sizing: border-box;
        border-width: 1px;
        width: 100%;
    }

    .calendar-day-new .day-number {
        font-size: 10px;
        margin-bottom: 1px;
        font-weight: 700;
    }

    .slot-indicators {
        gap: 1px;
        padding-top: 1px;
    }

    .slot-indicator {
        width: 13px;
        height: 13px;
        font-size: 6px;
        border-width: 1px;
        border-radius: 4px;
    }

    .quick-book-overlay {
        gap: 6px;
    }

    .quick-book-btn-new {
        padding: 5px 10px;
        font-size: 10px;
        min-width: 75px;
        gap: 4px;
    }

    .quick-book-btn-new i {
        font-size: 11px;
    }

    /* Fancy Calendar Small Mobile */
    .calendar-day-fancy {
        min-height: 45px;
        padding: 3px 1px;
        border-radius: 10px;
        border-width: 1px;
    }

    .calendar-day-fancy .day-number {
        font-size: 11px;
        margin-bottom: 1px;
    }

    .dot-indicator {
        width: 8px;
        height: 8px;
    }

    .slot-indicators-fancy {
        gap: 2px;
        margin-top: 3px;
    }

    .calendar-legend-fancy {
        gap: 16px;
        margin-top: 12px;
        padding-top: 12px;
    }

    .legend-item-fancy {
        font-size: 11px;
        gap: 5px;
    }

    .legend-item {
        font-size: 11px;
    }

    .legend-indicator i {
        font-size: 14px;
    }
}

/* ========================================
   ADMIN PORTAL STYLES
   ======================================== */

/* Admin Portal Container */
.admin-portal {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 50%, #fff9e6 100%);
    min-height: 100vh;
}

/* Stats Cards */
.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--stat-color);
    transition: width 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-card:hover::before {
    width: 8px;
}

.stat-card.pending {
    --stat-color: #FFC107;
}

.stat-card.pending .stat-icon {
    background: rgba(255, 193, 7, 0.1);
    color: #FFC107;
}

.stat-card.processing {
    --stat-color: #2196F3;
}

.stat-card.processing .stat-icon {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.stat-card.approved {
    --stat-color: #4CAF50;
}

.stat-card.approved .stat-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.stat-card.rejected {
    --stat-color: #f44336;
}

.stat-card.rejected .stat-icon {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.stat-card.total {
    --stat-color: #EEBE31;
}

.stat-card.total .stat-icon {
    background: rgba(238, 190, 49, 0.1);
    color: #EEBE31;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.stat-info h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Cinzel', serif;
}

.stat-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin-top: 5px;
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(238, 190, 49, 0.2);
}

.admin-tab {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid transparent;
}

.admin-tab i {
    font-size: 18px;
}

.admin-tab:hover {
    color: #EEBE31;
}

.admin-tab.active {
    color: #EEBE31;
    border-bottom-color: #EEBE31;
}

.admin-tab .badge {
    background: #EEBE31;
    color: #2c2c2c;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
}

.admin-tab .tab-badge {
    background: #ef4444;
    color: white;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
    min-width: 22px;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Tab Content */
.tab-content {
    animation: fadeIn 0.4s ease;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.empty-state i {
    font-size: 64px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.empty-state h4 {
    color: #2c2c2c;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
}

/* Date Group */
.date-group {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(238, 190, 49, 0.1);
}

.date-group-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(238, 190, 49, 0.15);
    margin-bottom: 15px;
}

.date-group-header i {
    font-size: 24px;
    color: #EEBE31;
}

.date-group-header h5 {
    margin: 0;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #2c2c2c;
    flex: 1;
}

.slot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(238, 190, 49, 0.1);
    color: #EEBE31;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #EEBE31;
}

.slot-badge i {
    font-size: 14px;
}

/* Date Group Info */
.date-group-info {
    background: rgba(238, 190, 49, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.info-badge i {
    color: #EEBE31;
    font-size: 16px;
}

.date-group-info p {
    margin: 0;
    color: #666;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
}

/* Request Card */
.request-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.request-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    border-radius: 12px 0 0 12px;
    transition: all 0.3s ease;
}

.request-card.day-slot-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.03), rgba(255, 152, 0, 0.05));
    border-color: rgba(255, 193, 7, 0.3);
}

.request-card.day-slot-card::before {
    background: linear-gradient(180deg, #FFC107, #FF9800);
}

.request-card.night-slot-card {
    background: linear-gradient(135deg, rgba(63, 81, 181, 0.03), rgba(103, 58, 183, 0.05));
    border-color: rgba(103, 58, 183, 0.3);
}

.request-card.night-slot-card::before {
    background: linear-gradient(180deg, #673AB7, #3F51B5);
}

.request-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.request-card.day-slot-card:hover {
    border-color: #FFC107;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.25);
}

.request-card.night-slot-card:hover {
    border-color: #673AB7;
    box-shadow: 0 8px 25px rgba(103, 58, 183, 0.25);
}

.request-card:last-child {
    margin-bottom: 0;
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EEBE31, #d9a821);
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.3);
}

.customer-avatar.large {
    width: 60px;
    height: 60px;
    font-size: 26px;
}

.customer-info h6 {
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #2c2c2c;
}

.customer-info p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: #999;
}

.header-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.slot-badge-prominent {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slot-badge-prominent i {
    font-size: 18px;
}

.slot-badge-prominent.day-slot {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #2c2c2c;
    border-color: #FF9800;
}

.slot-badge-prominent.day-slot:hover {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transform: scale(1.05);
}

.slot-badge-prominent.night-slot {
    background: linear-gradient(135deg, #673AB7, #3F51B5);
    color: white;
    border-color: #3F51B5;
}

.slot-badge-prominent.night-slot:hover {
    box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
    transform: scale(1.05);
}

.event-type-badge {
    background: #EEBE31;
    color: #2c2c2c;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

/* Request Details */
.request-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #2c2c2c;
}

.detail-item i {
    color: #EEBE31;
    font-size: 16px;
    min-width: 20px;
}

.detail-row.special-requests {
    background: rgba(238, 190, 49, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.detail-row.special-requests i {
    align-self: flex-start;
    margin-top: 3px;
}

/* Request Actions */
.request-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.request-actions .btn {
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.request-actions .btn-outline-danger {
    color: #f44336;
    border: 2px solid #f44336;
    background: transparent;
}

.request-actions .btn-outline-danger:hover {
    background: #f44336;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.request-actions .btn-primary {
    background: #EEBE31;
    border: 2px solid #EEBE31;
    color: #2c2c2c;
}

.request-actions .btn-primary:hover {
    background: #d9a821;
    border-color: #d9a821;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.4);
}

/* Approved Card */
.approved-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

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

.approved-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.15);
}

.approved-date {
    display: flex;
    align-items: center;
    gap: 15px;
}

.approved-date i {
    font-size: 28px;
    color: #4CAF50;
}

.approved-date h6 {
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #2c2c2c;
}

.approved-date p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.approved-date p i {
    font-size: 14px;
    color: #EEBE31;
}

.approved-badge {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 10px 18px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #4CAF50;
}

.approved-badge i {
    font-size: 16px;
}

/* Approved Body */
.approved-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Advance Amount Display */
.advance-amount-display {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.advance-amount-display i {
    font-size: 32px;
    color: white;
}

.advance-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.advance-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.advance-value {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: white;
    font-weight: 700;
}

/* Approved Actions */
.approved-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.btn-cancel-booking {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-cancel-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-cancel-booking i {
    font-size: 16px;
}

/* Approved Booking Actions in Modal */
.approved-booking-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.btn-send-vendor {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.btn-send-vendor:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.btn-send-vendor i {
    font-size: 18px;
}

.btn-notify-rejected {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.btn-notify-rejected:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.btn-notify-rejected i {
    font-size: 18px;
}

/* Rejected Users Section */
.rejected-users-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.rejected-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rejected-section-title i {
    color: #ef4444;
    font-size: 18px;
}

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

.rejected-user-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.02) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.rejected-user-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

.rejected-user-info {
    flex: 1;
}

.rejected-user-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 10px;
    flex-wrap: wrap;
}

.rejected-user-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.rejected-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rejected-badge i {
    font-size: 11px;
}

.rejected-user-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.rejected-detail {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rejected-detail i {
    color: #999;
    font-size: 12px;
}

.btn-notify-single-user {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
}

.btn-notify-single-user:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.btn-notify-single-user i {
    font-size: 16px;
}

.processing-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-section-header {
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.customer-section-header h5 {
    margin: 0 0 8px 0;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #2c2c2c;
}

.customer-section-header .event-type {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #EEBE31;
    font-weight: 600;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #2c2c2c;
}

.info-item i {
    color: #EEBE31;
    font-size: 16px;
    min-width: 20px;
    flex-shrink: 0;
}

.info-item a {
    color: #2196F3;
    text-decoration: none;
    word-break: break-all;
}

.info-item a:hover {
    text-decoration: underline;
}

.info-item a.whatsapp-link {
    color: #25D366;
    font-weight: 600;
}

.info-item a.whatsapp-link:hover {
    color: #128C7E;
}

.info-item .fa-whatsapp {
    color: #25D366;
}

.info-item.advance-info {
    background: rgba(33, 150, 243, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
}

/* Special Notes */
.special-notes {
    background: rgba(238, 190, 49, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #EEBE31;
}

.special-notes h6 {
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.special-notes h6 i {
    color: #EEBE31;
    font-size: 16px;
}

.special-notes p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #666;
}

/* Admin Confirm Modal */
.admin-confirm-modal {
    max-width: 550px;
}

.confirm-modal-body {
    padding: 30px;
    text-align: center;
}

.confirm-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
}

.confirm-icon.approve {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 3px solid #4CAF50;
}

.confirm-icon.reject {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 3px solid #f44336;
}

.confirm-details {
    margin-bottom: 25px;
}

.confirm-details h5 {
    margin: 0 0 15px 0;
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #2c2c2c;
}

.confirm-date,
.confirm-event {
    margin: 8px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.confirm-date i,
.confirm-event i {
    color: #EEBE31;
    font-size: 18px;
}

.confirm-message {
    background: rgba(76, 175, 80, 0.05);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.confirm-message.reject {
    background: rgba(244, 67, 54, 0.05);
    border-left-color: #f44336;
}

.confirm-message p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.confirm-message p i {
    color: #4CAF50;
    font-size: 18px;
}

.confirm-message.reject p i {
    color: #f44336;
}

/* Button Danger Override */
.btn-danger {
    background-color: #f44336 !important;
    border-color: #f44336 !important;
    color: #ffffff !important;
}

.btn-danger:hover {
    background-color: #d32f2f !important;
    border-color: #d32f2f !important;
}

/* Mobile Responsive for Admin Portal */
@media (max-width: 768px) {
    .admin-portal {
        padding-bottom: 20px;
    }

    /* Stats Cards Mobile */
    .stat-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .stat-info h3 {
        font-size: 28px;
    }

    .stat-info p {
        font-size: 13px;
    }

    /* Admin Tabs Mobile */
    .admin-tabs {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
    }

    .admin-tab {
        padding: 12px 18px;
        font-size: 14px;
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }

    .admin-tab span {
        display: none;
    }

    .admin-tab i {
        font-size: 20px;
    }

    /* Date Group Mobile */
    .date-group {
        padding: 20px;
        margin-bottom: 20px;
    }

    .date-group-header {
        flex-wrap: wrap;
        gap: 12px;
        padding-bottom: 15px;
    }

    .date-group-header h5 {
        font-size: 18px;
        width: 100%;
    }

    .slot-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .date-group-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 15px;
    }

    /* Request Card Mobile */
    .request-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .request-card::before {
        width: 5px;
    }

    .request-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .header-badges {
        align-items: flex-start;
        width: 100%;
    }

    .slot-badge-prominent {
        padding: 8px 16px;
        font-size: 12px;
        gap: 8px;
    }

    .slot-badge-prominent i {
        font-size: 16px;
    }

    .customer-avatar {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .customer-info h6 {
        font-size: 16px;
    }

    .detail-row {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 10px;
    }

    .detail-item {
        font-size: 14px;
    }

    .detail-row.special-requests {
        padding: 12px;
        margin-top: 12px;
    }

    /* Request Actions Mobile */
    .request-actions {
        flex-direction: column;
        gap: 10px;
    }

    .request-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }

    /* Approved Card Mobile */
    .approved-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .approved-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .approved-date {
        gap: 12px;
    }

    .approved-date i {
        font-size: 24px;
    }

    .approved-date h6 {
        font-size: 16px;
    }

    .customer-section-header h5 {
        font-size: 18px;
    }

    .customer-section-header .event-type {
        font-size: 13px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-item {
        font-size: 13px;
    }

    .processing-action {
        flex-direction: column;
        gap: 10px;
    }

    .btn-receive-advance,
    .btn-not-received {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 14px 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-item {
        font-size: 14px;
    }

    .special-notes {
        padding: 15px;
    }

    .special-notes h6 {
        font-size: 13px;
    }

    .special-notes p {
        font-size: 14px;
    }

    .payment-timer {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }

    .timer-info {
        width: 100%;
        gap: 12px;
    }

    .timer-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .timer-details h6 {
        font-size: 12px;
    }

    .deadline-time {
        font-size: 14px;
    }

    .time-remaining {
        font-size: 13px;
    }

    .btn-send-reminder {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    .pending-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pending-date-badge {
        gap: 12px;
    }

    .pending-date-badge i {
        font-size: 24px;
    }

    .pending-date-badge h6 {
        font-size: 16px;
    }

    .pending-date-badge p {
        font-size: 13px;
    }

    .pending-status-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .pending-item-actions {
        flex-direction: column;
        gap: 10px;
    }

    .pending-item-actions .btn-approve,
    .pending-item-actions .btn-reject {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Empty State Mobile */
    .empty-state {
        padding: 60px 20px;
    }

    .empty-state i {
        font-size: 48px;
    }

    .empty-state h4 {
        font-size: 20px;
    }

    .empty-state p {
        font-size: 15px;
    }

    /* Confirm Modal Mobile */
    .admin-confirm-modal {
        max-width: 95%;
        margin: 10px;
    }

    .confirm-modal-body {
        padding: 25px 20px;
    }

    .confirm-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        margin-bottom: 20px;
    }

    .confirm-details h5 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .confirm-date,
    .confirm-event {
        font-size: 15px;
        flex-wrap: wrap;
    }

    .confirm-message {
        padding: 12px 15px;
    }

    .confirm-message p {
        font-size: 14px;
        flex-direction: column;
        gap: 8px;
    }

    .modal-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 25px;
    }

    .modal-actions .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile for admin portal */
    .stat-card {
        padding: 18px;
        gap: 15px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .stat-info h3 {
        font-size: 24px;
    }

    .stat-info p {
        font-size: 12px;
    }

    .admin-tab {
        min-width: 60px;
        padding: 12px 10px;
    }

    .date-group {
        padding: 15px;
    }

    .date-group-header h5 {
        font-size: 16px;
    }

    .date-group-header i {
        font-size: 20px;
    }

    .slot-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .request-card {
        padding: 15px;
    }

    .customer-avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .customer-info h6 {
        font-size: 15px;
    }

    .customer-info p {
        font-size: 12px;
    }

    .event-type-badge {
        padding: 6px 12px;
        font-size: 12px;
    }

    .detail-item {
        font-size: 13px;
    }

    .detail-item i {
        font-size: 14px;
    }

    .request-actions .btn {
        padding: 12px 16px;
        font-size: 14px;
    }

    .approved-card {
        padding: 15px;
    }

    .approved-date h6 {
        font-size: 15px;
    }

    .approved-date p {
        font-size: 13px;
    }

    .approved-badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .customer-avatar.large {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .customer-details h5 {
        font-size: 16px;
    }

    .customer-details .event-type {
        font-size: 13px;
    }

    .info-item {
        font-size: 13px;
    }

    .info-item i {
        font-size: 16px;
    }

    .special-notes {
        padding: 12px;
    }

    .special-notes h6 {
        font-size: 12px;
    }

    .special-notes p {
        font-size: 13px;
    }

    .confirm-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .confirm-details h5 {
        font-size: 18px;
    }

    .confirm-date,
    .confirm-event {
        font-size: 14px;
    }
}

/* Extra Small Mobile (Below 360px) - Emergency Calendar Fix */
@media (max-width: 360px) {
    .booking-calendar-container {
        padding: 2px;
        overflow: visible;
    }

    .calendar-header {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .calendar-header h3 {
        font-size: 16px !important;
    }

    .calendar-header .btn-outline-primary {
        padding: 6px 8px;
        font-size: 14px;
    }

    .calendar-day-header {
        font-size: 8px;
        padding: 5px 0.5px;
        font-weight: 700;
        overflow: visible;
        white-space: nowrap;
    }

    .calendar-grid {
        gap: 0.5px;
        min-height: 293px;
        overflow: visible;
        padding: 0px;
    }

    .calendar-day-new {
        min-height: 48px;
        padding: 2px 0px;
        border-width: 1px;
    }

    .calendar-day-new .day-number {
        font-size: 9px;
        margin-bottom: 1px;
    }

    .slot-indicators {
        gap: 1px;
        padding-top: 1px;
    }

    .slot-indicator {
        width: 11px;
        height: 11px;
        font-size: 5px;
        border-radius: 3px;
    }

    .calendar-legend {
        gap: 8px;
        margin-top: 15px;
        padding-top: 10px;
    }

    .legend-item {
        font-size: 10px;
    }

    .legend-box {
        width: 14px;
        height: 14px;
    }

    /* Fancy Calendar Extra Small Mobile */
    .calendar-day-fancy {
        min-height: 42px;
        padding: 2px 0px;
        border-radius: 8px;
    }

    .calendar-day-fancy .day-number {
        font-size: 9px;
        margin-bottom: 1px;
        font-weight: 700;
    }

    .dot-indicator {
        width: 7px;
        height: 7px;
    }

    .slot-indicators-fancy {
        gap: 1px;
        margin-top: 2px;
    }

    .calendar-legend-fancy {
        gap: 12px;
        margin-top: 10px;
        padding-top: 10px;
    }

    .legend-item-fancy {
        font-size: 10px;
        gap: 4px;
    }
}

/* ========================================
   ADMIN CALENDAR STYLES
   ======================================== */

.admin-calendar-container {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(238, 190, 49, 0.15);
    border: 2px solid rgba(238, 190, 49, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.admin-calendar-container .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(238, 190, 49, 0.2);
}

.admin-calendar-container .calendar-header h3 {
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.admin-calendar-container .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-height: 540px;
    align-content: start;
}

.calendar-day-admin {
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    background: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px;
    min-height: 110px;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calendar-day-admin.empty {
    border: none;
    background: transparent;
}

.calendar-day-admin.has-booking {
    border-color: #EEBE31;
    background: rgba(238, 190, 49, 0.05);
}

.calendar-day-admin .day-number {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
}

.slot-indicators-admin {
    display: flex;
    gap: 6px;
    align-items: center;
}

.slot-indicator-admin {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.slot-indicator-admin.available {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4CAF50;
    color: #4CAF50;
}

.slot-indicator-admin.booked {
    background: rgba(244, 67, 54, 0.1);
    border-color: #f44336;
    color: #f44336;
}

.pending-badge-admin {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: 1px solid #FFC107;
    text-align: center;
}

.pending-badge-admin.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pending-badge-admin.clickable:hover {
    background: rgba(255, 193, 7, 0.3);
    border-color: #FFA000;
    transform: scale(1.05);
}

.booking-info-admin {
    background: rgba(238, 190, 49, 0.1);
    padding: 8px;
    border-radius: 8px;
    margin-top: auto;
}

.customer-name-admin {
    font-size: 12px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-type-admin {
    font-size: 10px;
    color: #EEBE31;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.calendar-legend-admin {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid rgba(238, 190, 49, 0.1);
    flex-wrap: wrap;
}

.legend-item-admin {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #2c2c2c;
}

.legend-indicator-admin {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.legend-indicator-admin.available {
    color: #4CAF50;
}

.legend-indicator-admin.booked {
    color: #f44336;
}

.legend-indicator-admin.pending {
    color: #FFC107;
}

/* Mobile Responsive for Admin Calendar */
@media (max-width: 768px) {
    .admin-calendar-container {
        padding: 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .admin-calendar-container .calendar-header h3 {
        font-size: 18px;
    }

    .admin-calendar-container .calendar-grid {
        gap: 3px;
        min-height: 410px;
    }

    .calendar-day-admin {
        min-height: 85px;
        padding: 6px 4px;
        gap: 4px;
    }

    .calendar-day-admin .day-number {
        font-size: 13px;
    }

    .slot-indicators-admin {
        gap: 4px;
    }

    .slot-indicator-admin {
        width: 18px;
        height: 18px;
        font-size: 8px;
        border-width: 1.5px;
    }

    .pending-badge-admin {
        font-size: 9px;
        padding: 3px 6px;
    }

    .booking-info-admin {
        padding: 5px;
    }

    .customer-name-admin {
        font-size: 10px;
    }

    .event-type-admin {
        font-size: 9px;
    }

    .calendar-legend-admin {
        gap: 15px;
        margin-top: 20px;
        padding-top: 15px;
    }

    .legend-item-admin {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .admin-calendar-container {
        padding: 8px;
    }

    .admin-calendar-container .calendar-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .admin-calendar-container .calendar-header h3 {
        font-size: 16px;
    }

    .admin-calendar-container .calendar-grid {
        gap: 1.5px;
        min-height: 322px;
    }

    .calendar-day-admin {
        min-height: 70px;
        padding: 4px 2px;
        gap: 3px;
    }

    .calendar-day-admin .day-number {
        font-size: 11px;
    }

    .slot-indicators-admin {
        gap: 3px;
    }

    .slot-indicator-admin {
        width: 15px;
        height: 15px;
        font-size: 7px;
        border-width: 1px;
    }

    .pending-badge-admin {
        font-size: 8px;
        padding: 2px 4px;
    }

    .booking-info-admin {
        padding: 4px;
    }

    .customer-name-admin {
        font-size: 9px;
    }

    .event-type-admin {
        font-size: 8px;
    }

    .calendar-legend-admin {
        gap: 12px;
        flex-direction: column;
    }

    .legend-item-admin {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .admin-calendar-container {
        padding: 6px;
    }

    .admin-calendar-container .calendar-header h3 {
        font-size: 15px;
    }

    .admin-calendar-container .calendar-grid {
        gap: 0.5px;
        min-height: 293px;
    }

    .calendar-day-admin {
        min-height: 62px;
        padding: 3px 1px;
        gap: 2px;
    }

    .calendar-day-admin .day-number {
        font-size: 10px;
    }

    .slot-indicators-admin {
        gap: 2px;
    }

    .slot-indicator-admin {
        width: 13px;
        height: 13px;
        font-size: 6px;
        border-width: 1px;
    }

    .pending-badge-admin {
        font-size: 7px;
        padding: 2px 3px;
    }

    .booking-info-admin {
        padding: 3px;
    }

    .customer-name-admin {
        font-size: 8px;
    }

    .event-type-admin {
        font-size: 7px;
    }

    .legend-item-admin {
        font-size: 10px;
    }
}

/* ========================================
   PENDING REQUESTS MODAL STYLES
   ======================================== */

.pending-requests-modal {
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
}

.pending-requests-body {
    padding: 0;
    max-height: 60vh;
    overflow-y: auto;
}

.pending-request-item {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pending-request-item:hover {
    border-color: #EEBE31;
    box-shadow: 0 4px 15px rgba(238, 190, 49, 0.15);
}

.pending-request-item:last-child {
    margin-bottom: 0;
}

.request-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

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

.customer-avatar-modal {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EEBE31, #d9a821);
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.3);
}

.customer-info-modal h5 {
    margin: 0 0 3px 0;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #2c2c2c;
}

.customer-info-modal p {
    margin: 0;
    font-size: 12px;
    color: #999;
    font-family: 'Cormorant Garamond', serif;
}

.event-type-badge-modal {
    background: #EEBE31;
    color: #2c2c2c;
    padding: 6px 14px;
    border-radius: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.request-item-details {
    margin-bottom: 15px;
}

.detail-row-modal {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.detail-row-modal:last-child {
    margin-bottom: 0;
}

.detail-item-modal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #2c2c2c;
}

.detail-item-modal i {
    color: #EEBE31;
    font-size: 14px;
    min-width: 18px;
}

.special-requests-modal {
    background: rgba(238, 190, 49, 0.05);
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #666;
}

.special-requests-modal i {
    color: #EEBE31;
    font-size: 14px;
    margin-top: 2px;
}

.request-item-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.request-item-actions .btn {
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-footer-info {
    background: rgba(238, 190, 49, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #666;
    margin-top: 20px;
}

.modal-footer-info i {
    color: #EEBE31;
    font-size: 18px;
}

/* Mobile Responsive for Pending Requests Modal */
@media (max-width: 768px) {
    .pending-requests-modal {
        max-width: 95%;
        margin: 10px;
    }

    .pending-request-item {
        padding: 15px;
    }

    .request-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .customer-avatar-modal {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .customer-info-modal h5 {
        font-size: 15px;
    }

    .detail-row-modal {
        flex-direction: column;
        gap: 8px;
    }

    .detail-item-modal {
        font-size: 13px;
    }

    .request-item-actions {
        flex-direction: column;
        width: 100%;
    }

    .request-item-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .modal-footer-info {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* ========================================
   BOOKING DETAILS MODAL STYLES
   ======================================== */

.booking-info-admin.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-info-admin.clickable:hover {
    background: rgba(238, 190, 49, 0.1);
    transform: scale(1.02);
}

.booking-details-modal {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-details-body {
    padding: 30px;
}

.booking-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.status-badge-large {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.status-badge-large.confirmed {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.2));
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.status-badge-large i {
    font-size: 20px;
}

.booking-id {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
}

.details-section {
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(238, 190, 49, 0.3);
}

.section-title i {
    color: #EEBE31;
    font-size: 20px;
}

.customer-profile {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(238, 190, 49, 0.05), rgba(238, 190, 49, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(238, 190, 49, 0.2);
}

.customer-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EEBE31, #d4a829);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(238, 190, 49, 0.3);
}

.customer-info-large h4 {
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    font-size: 24px;
    margin: 0 0 15px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #666;
}

.contact-item i {
    color: #EEBE31;
    font-size: 16px;
    width: 20px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #EEBE31;
    text-decoration: underline;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.event-detail-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.event-detail-card:hover {
    border-color: rgba(238, 190, 49, 0.5);
    box-shadow: 0 5px 15px rgba(238, 190, 49, 0.1);
}

.detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.detail-icon.event-type {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.detail-icon.date {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.detail-icon.time {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.detail-icon.guests {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}

.detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 600;
    margin: 0;
}

.special-requests-box {
    background: rgba(255, 193, 7, 0.1);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #FFC107;
}

.special-requests-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #555;
    margin: 0;
    line-height: 1.8;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #EEBE31, rgba(238, 190, 49, 0.3));
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d0d0d0;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-dot.approved {
    background: #4CAF50;
}

.timeline-content {
    background: #fafafa;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 5px 0;
}

.timeline-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Mobile Responsive for Booking Details Modal */
@media (max-width: 768px) {
    .booking-details-modal {
        max-width: 95%;
        margin: 10px;
    }

    .booking-details-body {
        padding: 20px;
    }

    .booking-status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .status-badge-large {
        font-size: 14px;
        padding: 10px 18px;
    }

    .customer-profile {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .customer-avatar-large {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .customer-info-large h4 {
        font-size: 20px;
    }

    .contact-details {
        align-items: center;
    }

    .event-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-title {
        font-size: 16px;
    }

    .detail-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .detail-value {
        font-size: 16px;
    }

    .timeline {
        padding-left: 35px;
    }

    .timeline-dot {
        left: -28px;
    }
}

@media (max-width: 480px) {
    .booking-details-body {
        padding: 15px;
    }

    .status-badge-large {
        font-size: 13px;
        padding: 8px 15px;
    }

    .status-badge-large i {
        font-size: 16px;
    }

    .customer-avatar-large {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .customer-info-large h4 {
        font-size: 18px;
    }

    .contact-item {
        font-size: 14px;
    }

    .section-title {
        font-size: 15px;
    }

    .section-title i {
        font-size: 16px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .detail-label {
        font-size: 11px;
    }

    .detail-value {
        font-size: 15px;
    }

    .special-requests-box {
        padding: 15px;
    }

    .special-requests-box p {
        font-size: 14px;
    }

    .timeline-content {
        padding: 12px 15px;
    }

    .timeline-title {
        font-size: 13px;
    }

    .timeline-date {
        font-size: 12px;
    }
}

/* ========================================
   FARMHOUSE BOOKING CALENDAR – ENTERPRISE
   ======================================== */

.farmhouse-calendar-container {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

/* Booked Date Popup – Centered in Calendar */
.booked-popup-overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    animation: popupFadeIn 0.25s ease;
}

.booked-popup {
    background: #fff;
    border-radius: 14px;
    padding: 28px 32px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    animation: popupScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 220px;
    max-width: 85%;
}

.booked-popup-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.booked-popup-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 15px;
    color: #b91c1c;
    margin-bottom: 4px;
}

.booked-popup-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}

.booked-popup-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.booked-popup-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

@keyframes popupFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes popupScaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 992px) {
    .booking-layout {
        align-items: stretch !important;
    }
    .booking-layout > .col-lg-5,
    .booking-layout > .col-lg-7 {
        display: flex;
        flex-direction: column;
    }
    .farmhouse-calendar-container {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .farmhouse-calendar-grid {
        flex: 1;
    }
    .booking-form-card {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .booking-form-card form {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    .booking-form-card form .text-center.mt-2 {
        margin-top: auto !important;
    }
}

/* Calendar Header – centered month/year with arrows on sides */
.farmhouse-calendar-header {
    background: linear-gradient(135deg, #EEBE31 0%, #d4a828 100%);
    color: #2c2c2c;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.farmhouse-month-year {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.farmhouse-month-name {
    font-size: 17px;
}

.farmhouse-year {
    font-size: 13px;
    opacity: 0.7;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.farmhouse-nav-btn {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: #2c2c2c;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.farmhouse-nav-btn:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.08);
}

/* Legend – inline with small dots */
.farmhouse-legend {
    padding: 6px 14px;
    background: #fafafa;
    display: flex;
    gap: 14px;
    justify-content: center;
    border-bottom: 1px solid #eee;
}

.farmhouse-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    color: #666;
}

.farmhouse-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.farmhouse-legend-dot.available {
    background: #22c55e;
}

.farmhouse-legend-dot.booked {
    background: #ef4444;
}

.farmhouse-legend-dot.today-dot {
    background: transparent;
    border: 2px solid #EEBE31;
    width: 8px;
    height: 8px;
    box-sizing: border-box;
}

/* Calendar Grid */
.farmhouse-calendar-grid {
    padding: 8px 10px 10px;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.farmhouse-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 3px;
}

.farmhouse-weekday {
    text-align: center;
    font-weight: 700;
    color: #999;
    padding: 4px 2px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.farmhouse-weekday.weekend {
    color: #EEBE31;
}

.farmhouse-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    width: 100%;
}

/* Day Cell – compact, Google Calendar-style */
.farmhouse-day-cell {
    border: 1.5px solid transparent;
    border-radius: 8px;
    padding: 4px 2px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fff;
    min-height: 44px;
    width: 100%;
    box-sizing: border-box;
    gap: 3px;
}

.farmhouse-day-cell:not(.empty):not(.past):hover {
    background: rgba(238, 190, 49, 0.08);
    border-color: #EEBE31;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(238, 190, 49, 0.15);
}

.farmhouse-day-number {
    font-weight: 600;
    font-size: 13px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.farmhouse-day-number.past-text {
    color: #ccc;
}

/* Weekend day numbers */
.farmhouse-day-cell.weekend .farmhouse-day-number {
    color: #b8860b;
}

.farmhouse-day-cell.weekend.past .farmhouse-day-number {
    color: #ddd;
}

/* Status dot – 8px colored circles */
.farmhouse-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.farmhouse-status-dot.available {
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.farmhouse-status-dot.booked {
    background: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

/* Booked cell background tint */
.farmhouse-day-cell.has-booked {
    background: rgba(239, 68, 68, 0.04);
}

.farmhouse-day-cell.has-booked:not(.past):hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: #ef4444;
}

/* Empty cells */
.farmhouse-day-cell.empty {
    background: transparent;
    border-color: transparent;
    cursor: default;
    min-height: 0;
}

.farmhouse-day-cell.empty:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    border-color: transparent;
}

/* Past dates – dimmed with strikethrough */
.farmhouse-day-cell.past {
    background: #fafafa;
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.farmhouse-day-cell.past:hover {
    transform: none;
    box-shadow: none;
}

/* Today – no special border, treated like any other available day */
.farmhouse-day-cell.today {
    border: 1.5px solid transparent;
    background: transparent;
}

.farmhouse-today-ring {
    display: none;
}

/* Selected day */
.farmhouse-day-cell.selected {
    background: #EEBE31;
    border-color: #EEBE31;
}

.farmhouse-day-cell.selected .farmhouse-day-number {
    color: #2c2c2c;
    font-weight: 700;
}

.farmhouse-day-cell.selected:hover .farmhouse-day-number {
    color: #2c2c2c;
}

.farmhouse-day-cell.selected .farmhouse-status-dot {
    background: #fff;
    box-shadow: none;
}

/* Loading overlay */
.farmhouse-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
}

/* Modal Styles */
.farmhouse-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1050;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

.farmhouse-modal.active {
    display: flex;
}

.farmhouse-modal-content {
    background: white;
    border-radius: 12px;
    padding: 20px;
    max-width: 360px;
    width: 100%;
    position: relative;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.farmhouse-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    line-height: 1;
}

.farmhouse-modal-close:hover {
    color: #2c2c2c;
}

.farmhouse-modal-title {
    font-size: 18px;
    font-weight: bold;
    color: #EEBE31;
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
}

.farmhouse-modal-body {
    font-family: 'Montserrat', sans-serif;
}

.farmhouse-modal-slot {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.farmhouse-modal-slot.available {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
}

.farmhouse-modal-slot.booked {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.farmhouse-slot-status {
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.farmhouse-book-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #2c2c2c;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.farmhouse-book-btn:hover {
    background: #EEBE31;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 190, 49, 0.4);
}

.farmhouse-book-btn:active {
    transform: translateY(0);
}

/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {
    .farmhouse-calendar-container {
        border-radius: 10px;
    }

    .farmhouse-calendar-header {
        padding: 8px 12px;
    }

    .farmhouse-month-name {
        font-size: 15px;
    }

    .farmhouse-year {
        font-size: 11px;
    }

    .farmhouse-nav-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .farmhouse-legend {
        padding: 5px 10px;
        gap: 10px;
    }

    .farmhouse-legend-item {
        font-size: 10px;
    }

    .farmhouse-calendar-grid {
        padding: 6px;
    }

    .farmhouse-weekdays {
        gap: 2px;
    }

    .farmhouse-weekday {
        font-size: 10px;
        padding: 3px 1px;
    }

    .farmhouse-days-grid {
        gap: 2px;
    }

    .farmhouse-day-cell {
        min-height: 40px;
        padding: 3px 1px;
        border-radius: 6px;
        border-width: 1px;
    }

    .farmhouse-day-cell:not(.empty):not(.past):hover {
        transform: none;
        box-shadow: none;
    }

    .farmhouse-day-cell:active:not(.past):not(.empty) {
        transform: scale(0.94);
        background: rgba(238, 190, 49, 0.12);
    }

    .farmhouse-day-number {
        font-size: 12px;
    }

    .farmhouse-status-dot {
        width: 6px;
        height: 6px;
    }

    .farmhouse-modal-content {
        padding: 16px;
        max-width: 320px;
    }

    .farmhouse-modal-title {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .farmhouse-calendar-header {
        padding: 6px 8px;
    }

    .farmhouse-month-name {
        font-size: 13px;
    }

    .farmhouse-nav-btn {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .farmhouse-legend {
        padding: 4px 6px;
        gap: 6px;
    }

    .farmhouse-legend-item {
        font-size: 9px;
    }

    .farmhouse-legend-dot {
        width: 6px;
        height: 6px;
    }

    .farmhouse-calendar-grid {
        padding: 4px;
    }

    .farmhouse-weekday {
        font-size: 8px;
    }

    .farmhouse-days-grid {
        gap: 1px;
    }

    .farmhouse-day-cell {
        min-height: 36px;
        padding: 2px 1px;
        border-radius: 4px;
    }

    .farmhouse-day-number {
        font-size: 10px;
    }

    .farmhouse-status-dot {
        width: 5px;
        height: 5px;
    }
}

/* Admin Calendar Specific Styles */
.admin-day-cell {
    position: relative;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    display: flex;
    flex-direction: column;
    padding: 4px !important;
    overflow: hidden;
}

.admin-day-cell.has-pending {
    cursor: pointer;
}

/* Pending count badge on slot (removed separate boxes) */

/* Approved bookings container */
.admin-approved-bookings {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: auto;
    padding-top: 8px;
}

.admin-booking-info {
    background: rgba(238, 190, 49, 0.1);
    border: 1px solid #EEBE31;
    border-radius: 6px;
    padding: 5px 6px;
    cursor: pointer;
    transition: all 0.2s;
    pointer-events: auto;
}

.admin-booking-info:hover {
    background: rgba(238, 190, 49, 0.2);
    transform: translateY(-2px);
}

/* Approved booking card in modal */
.approved-booking-card {
    border-left: 4px solid #22c55e;
}

.approved-booking-card .status-badge.confirmed {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.approved-booking-card .slot-indicator.confirmed {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid #22c55e;
}

.admin-customer-name {
    font-size: 10px;
    font-weight: bold;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-event-type {
    font-size: 9px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Date Slot Modal */
.date-slot-modal {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.slot-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
}

.slot-tab {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.slot-tab.active {
    border: 3px solid #EEBE31;
    background: linear-gradient(135deg, rgba(238, 190, 49, 0.1) 0%, rgba(238, 190, 49, 0.05) 100%);
}

.slot-tab.booked {
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
}

.slot-tab.booked.active {
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.08) 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.slot-booked-badge {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.slot-pending-badge-large {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.slot-tab-icon {
    font-size: 48px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.slot-tab-icon .slot-pending-badge {
    font-size: 14px;
}

.slot-tab-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 16px;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.slot-tab-time {
    font-size: 12px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.slot-content {
    padding: 20px;
    min-height: 300px;
}

/* Booked Slot View */
.booked-slot-view {
}

.approved-booking-details {
}

.booking-card-large {
    background: white;
    border: 2px solid #22c55e;
    border-radius: 12px;
    padding: 20px;
}

.booking-customer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.customer-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EEBE31 0%, #d4a828 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.booking-customer-header h4 {
    margin: 0;
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    font-size: 20px;
}

.event-type-large {
    margin: 5px 0 0 0;
    color: #EEBE31;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.booking-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-item.full-width {
    grid-column: 1 / -1;
}

.detail-item i {
    color: #EEBE31;
    width: 20px;
    text-align: center;
}

.detail-item .fa-whatsapp {
    color: #25D366;
}

.detail-item span {
    font-size: 14px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
}

.detail-item a {
    font-size: 14px;
    color: #2196F3;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.detail-item a:hover {
    text-decoration: underline;
}

.detail-item a.whatsapp-link {
    color: #25D366;
    font-weight: 600;
}

.detail-item a.whatsapp-link:hover {
    color: #128C7E;
}

/* Pending Slot View */
.pending-slot-view {
}

.pending-count-header {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.pending-requests-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pending-request-card {
    background: white;
    border: 3px solid #fbbf24;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pending-request-card:last-child {
    margin-bottom: 0;
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

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

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EEBE31 0%, #d4a828 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.customer-details h4 {
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    font-size: 18px;
}

.event-type-small {
    margin: 0;
    font-size: 14px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge.pending {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
}

.status-badge.confirmed {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.request-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
}

.detail-row i {
    color: #EEBE31;
    width: 16px;
}

.detail-row .fa-whatsapp {
    color: #25D366;
}

.detail-row a {
    color: #2196F3;
    text-decoration: none;
}

.detail-row a:hover {
    text-decoration: underline;
}

.detail-row a.whatsapp-link {
    color: #25D366;
    font-weight: 600;
}

.detail-row a.whatsapp-link:hover {
    color: #128C7E;
}

.special-requests {
    grid-column: 1 / -1;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
}

.special-requests i {
    color: #EEBE31;
    margin-top: 2px;
}

.request-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 2px solid #f8f9fa;
}

.btn-approve, .btn-reject {
    flex: 1;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-approve {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.btn-approve:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-reject {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.btn-reject:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Available Slot View */
.available-slot-view {
    text-align: center;
    padding: 60px 20px;
}

.available-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.available-slot-view h4 {
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.available-slot-view p {
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

/* Pending Dates List - Compact View */
.pending-dates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.pending-date-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #fbbf24;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pending-date-item:hover {
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.2);
    transform: translateX(4px);
    border-left-color: #f59e0b;
}

.pending-date-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pending-date-icon i {
    font-size: 22px;
    color: white;
}

.pending-date-info {
    flex: 1;
}

.pending-date-info h6 {
    margin: 0 0 4px 0;
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    font-size: 16px;
    font-weight: 600;
}

.pending-date-info p {
    margin: 0;
    font-size: 13px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.pending-date-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 12px;
}

.count-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 14px;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.count-label {
    font-size: 11px;
    color: #999;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pending-date-arrow {
    color: #ccc;
    font-size: 16px;
    flex-shrink: 0;
}

.pending-date-item:hover .pending-date-arrow {
    color: #fbbf24;
    transform: translateX(4px);
    transition: all 0.3s ease;
}

/* Old Pending Requests List - Keep for other uses if needed */
.pending-requests-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pending-request-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #fbbf24;
    transition: all 0.3s;
}

.pending-request-item:hover {
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
    transform: translateY(-2px);
}

.pending-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #f8f9fa;
    flex-wrap: wrap;
    gap: 15px;
}

.pending-date-badge {
    display: flex;
    gap: 15px;
    align-items: center;
}

.pending-date-badge i {
    font-size: 28px;
    color: #fbbf24;
}

.pending-date-badge h6 {
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    font-size: 18px;
}

.pending-date-badge p {
    margin: 0;
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.pending-status-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pending-item-body {
    padding: 20px;
}

.pending-item-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.pending-item-actions .btn-approve,
.pending-item-actions .btn-reject {
    flex: 1;
    padding: 12px 24px;
    font-size: 14px;
}

/* Processing Card Styles */
.processing-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    border-left: 3px solid #2196F3;
    transition: all 0.3s;
}

.processing-card:hover {
    box-shadow: 0 3px 12px rgba(33, 150, 243, 0.15);
    transform: translateY(-1px);
}

.processing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.processing-date {
    display: flex;
    gap: 10px;
    align-items: center;
}

.processing-date i {
    font-size: 18px;
    color: #2196F3;
}

.processing-date h6 {
    margin: 0 0 3px 0;
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    font-size: 15px;
}

.processing-date p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.processing-badge {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
}

.processing-body {
    padding: 15px;
}

.processing-action {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-receive-advance {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-receive-advance:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.25);
}

.btn-not-received {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.btn-not-received:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.25);
}

/* Payment Timer Section */
.payment-timer {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.08) 0%, rgba(33, 150, 243, 0.03) 100%);
    border: 1px solid #2196F3;
    border-radius: 8px;
    padding: 12px;
    margin: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-timer.expired {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
    border-color: #ef4444;
}

.timer-info {
    display: flex;
    gap: 10px;
    align-items: center;
    flex: 1;
}

.timer-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.payment-timer.expired .timer-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.timer-details {
    flex: 1;
}

.timer-details h6 {
    margin: 0 0 3px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: bold;
    color: #2c2c2c;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.deadline-time {
    margin: 0 0 5px 0;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: #2c2c2c;
    font-weight: 600;
}

.time-remaining {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2196F3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-remaining.expired-text {
    color: #ef4444;
}

.payment-progress-bar {
    width: 100%;
    height: 24px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.payment-progress-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.5s ease, background 0.3s ease;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.progress-percentage {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: bold;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.btn-send-reminder {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-send-reminder:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.btn-send-reminder i {
    font-size: 14px;
}

.payment-timer-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.payment-timer-actions button {
    flex: 1;
    min-width: 120px;
}

.btn-inform-cancel {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-inform-cancel:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.btn-inform-cancel i {
    font-size: 14px;
}

/* Advance Payment Modal */
.advance-modal {
    max-width: 500px;
}

/* Password Modal */
.password-modal {
    max-width: 450px;
}

.password-info {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #ef4444;
    display: flex;
    align-items: center;
    gap: 15px;
}

.password-info i {
    font-size: 32px;
    color: #ef4444;
}

.password-info p {
    margin: 0;
    font-size: 14px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
}

.password-input-group {
    margin-bottom: 25px;
}

.password-input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.password-input-group label i {
    color: #ef4444;
}

.password-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.password-input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.btn-submit-password {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 5px;
}

.btn-submit-password:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.btn-cancel-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 5px;
}

.btn-cancel-secondary:hover {
    background: #5a6268;
}

.booking-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.booking-summary h5 {
    margin: 0 0 10px 0;
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
}

.event-info, .date-info {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-info i, .date-info i {
    color: #EEBE31;
    width: 16px;
}

.advance-input-group {
    margin-bottom: 20px;
}

.advance-input-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.advance-input-group label i {
    color: #2196F3;
}

.advance-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

.advance-input:focus {
    outline: none;
    border-color: #2196F3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.btn-confirm-advance, .btn-cancel-advance {
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 5px;
}

.btn-confirm-advance {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.btn-confirm-advance:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-cancel-advance {
    background: #f0f0f0;
    color: #666;
}

.btn-cancel-advance:hover {
    background: #e0e0e0;
}

/* Remove Bootstrap column padding on mobile for full-width calendar */
@media (max-width: 991px) {
    .col-12:has(.farmhouse-calendar-container) {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .slot-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }

    .slot-tab {
        padding: 15px 10px;
    }

    .slot-tab-icon {
        font-size: 36px;
        margin-bottom: 8px;
    }

    .slot-tab-label {
        font-size: 14px;
    }

    .slot-tab-time {
        font-size: 10px;
    }

    .booking-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive for Date Modal */
@media (max-width: 768px) {
    .date-slot-modal {
        max-width: 95%;
        max-height: 85vh;
        margin: 20px;
    }

    .slot-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px;
    }

    .slot-tab {
        padding: 12px 8px;
    }

    .slot-tab-icon {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .slot-tab-label {
        font-size: 13px;
    }

    .slot-booked-badge {
        font-size: 10px;
        padding: 3px 8px;
        margin-top: 6px;
    }

    .slot-pending-badge-large {
        font-size: 11px;
        padding: 5px 10px;
        margin-top: 6px;
    }

    .slot-content {
        padding: 15px;
        min-height: 250px;
    }

    /* Pending Dates List - Mobile */
    .pending-dates-list {
        gap: 10px;
    }

    .pending-date-item {
        padding: 12px 15px;
        gap: 12px;
    }

    .pending-date-icon {
        width: 40px;
        height: 40px;
    }

    .pending-date-icon i {
        font-size: 18px;
    }

    .pending-date-info h6 {
        font-size: 14px;
    }

    .pending-date-info p {
        font-size: 12px;
    }

    .pending-date-count {
        padding: 0 8px;
    }

    .count-badge {
        font-size: 16px;
        padding: 5px 12px;
        min-width: 35px;
    }

    .count-label {
        font-size: 10px;
    }

    .pending-date-arrow {
        font-size: 14px;
    }

    .booking-customer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 15px;
    }

    .booking-customer-header h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .event-type-large {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .booking-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .detail-item {
        padding: 8px;
    }

    .detail-item span,
    .detail-item a {
        font-size: 13px;
        word-break: break-word;
    }

    .pending-count-header {
        padding: 10px 15px;
        font-size: 13px;
    }

    .pending-request-card {
        padding: 15px;
    }

    .request-info-header h4 {
        font-size: 16px;
    }

    .event-type-small {
        font-size: 11px;
    }

    .request-details {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }

    .detail-row {
        font-size: 12px;
    }

    .detail-row a {
        word-break: break-all;
        font-size: 12px;
    }

    .special-requests {
        font-size: 12px;
        padding: 8px;
    }

    .request-actions {
        flex-direction: column;
        gap: 8px;
    }

    .btn-approve,
    .btn-reject {
        width: 100%;
        padding: 10px;
        font-size: 13px;
    }

    .booking-card-large {
        padding: 15px;
    }
}

/* Small phones - for very small screens */
@media (max-width: 480px) {
    .date-slot-modal {
        max-width: 100%;
        max-height: 90vh;
        margin: 10px;
        border-radius: 12px;
    }

    .slot-tabs {
        gap: 6px;
        padding: 10px;
    }

    .slot-tab {
        padding: 10px 6px;
    }

    .slot-tab-icon {
        font-size: 28px;
        margin-bottom: 5px;
    }

    .slot-tab-label {
        font-size: 12px;
    }

    .slot-booked-badge {
        font-size: 9px;
        padding: 2px 6px;
    }

    .slot-content {
        padding: 12px;
        min-height: 200px;
    }

    .booking-customer-header h4 {
        font-size: 16px;
    }

    .event-type-large {
        font-size: 12px;
    }

    .detail-item {
        padding: 6px;
    }

    .detail-item span,
    .detail-item a {
        font-size: 12px;
    }

    .pending-count-header {
        padding: 8px 12px;
        font-size: 12px;
    }

    .pending-request-card {
        padding: 12px;
    }

    .request-info-header h4 {
        font-size: 15px;
    }

    .detail-row {
        font-size: 11px;
    }

    .detail-row a {
        font-size: 11px;
    }

    .btn-approve,
    .btn-reject {
        padding: 9px;
        font-size: 12px;
    }
}


/* ========================================
   ENTERPRISE BOOKING PAGE STYLES
   ======================================== */

/* Slim breadcrumb bar */
.compact-breadcrumb-bar {
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.compact-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    color: #ccc;
}

/* Loading overlay */
.booking-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.booking-overlay-card {
    text-align: center;
    background: white;
    padding: 28px 40px;
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    min-width: 260px;
}

.booking-overlay-spinner {
    width: 40px; height: 40px;
    border: 3px solid #f0f0f0;
    border-top: 3px solid #EEBE31;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 14px;
}

.booking-overlay-check {
    width: 42px; height: 42px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    animation: scaleIn 0.3s ease-out;
}

.booking-overlay-title {
    font-family: 'Cinzel', serif;
    color: #2c2c2c;
    margin-bottom: 4px;
    font-size: 1rem;
}

.booking-overlay-text {
    font-family: 'Montserrat', sans-serif;
    color: #888;
    margin-bottom: 0;
    font-size: 13px;
}

/* Main booking section */
.booking-main-section {
    padding: 16px 0 24px;
}

.booking-page-title {
    margin-bottom: 14px;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.booking-page-title h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 2px;
}

.booking-page-title p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
}

/* Booking form card */
.booking-form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.booking-form-title {
    font-family: 'Cinzel', serif;
    margin-bottom: 14px;
    text-align: left;
    color: #2c2c2c;
    font-size: 1.1rem;
}

/* Required field asterisk */
.required-star {
    color: #ef4444;
    font-weight: 700;
}

/* Read-only date/slot fields */
.readonly-field {
    background-color: #f4f4f5 !important;
    cursor: pointer !important;
    color: #666;
}

/* Date field hint tooltip */
.date-field-wrapper {
    position: relative;
}

.date-field-hint {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    text-align: center;
    z-index: 50;
    animation: hintFadeIn 0.2s ease-out;
    white-space: nowrap;
}

.date-field-hint i {
    margin-right: 5px;
    color: #EEBE31;
}

.date-field-hint::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 4px solid #2c2c2c;
}

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

/* Mobile: fixed toast at top of screen */
@media (max-width: 991px) {
    .date-field-hint {
        position: fixed;
        top: 90px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: auto;
        max-width: 90vw;
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 10px;
        z-index: 1000;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
        animation: toastSlideDown 0.25s ease-out;
    }

    .date-field-hint::before {
        display: none;
    }

    .date-field-hint i {
        font-size: 14px;
    }
}

@keyframes toastSlideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Success / Error messages */
.booking-msg {
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.booking-msg-success {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
}

.booking-msg-error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

/* Form floating labels – enterprise density */
.booking-page-compact .form-floating > .form-control,
.booking-page-compact .form-floating > .form-select {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}

.booking-page-compact .form-floating > label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #888;
}

/* Submit button – 60% width centered */
.btn-submit-booking {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 32px;
    border-radius: 8px;
    width: 60%;
    transition: all 0.2s;
}

.btn-submit-booking:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ---- Custom Event Type Dropdown ---- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: calc(3.5rem + 2px);
    padding: 0.75rem 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #888;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    user-select: none;
    box-sizing: border-box;
}

.custom-select-trigger:hover {
    border-color: #EEBE31;
}

.custom-select-trigger:focus,
.custom-select-trigger.open {
    border-color: #EEBE31;
    box-shadow: 0 0 0 3px rgba(238, 190, 49, 0.15);
    outline: none;
}

.custom-select-trigger.has-value {
    color: #2c2c2c;
    font-weight: 500;
}

.custom-select-label {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-label i {
    color: #EEBE31;
    font-size: 14px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.custom-select-arrow {
    font-size: 10px;
    color: #999;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.custom-select-arrow.rotated {
    transform: rotate(180deg);
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 100;
    list-style: none;
    margin: 0;
    padding: 6px;
    animation: dropdownFadeIn 0.15s ease-out;
}

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

.custom-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #333;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.custom-select-option:hover {
    background: rgba(238, 190, 49, 0.08);
    color: #2c2c2c;
}

.custom-select-option.selected {
    background: rgba(238, 190, 49, 0.12);
    color: #2c2c2c;
    font-weight: 600;
}

.custom-select-option i {
    color: #EEBE31;
    font-size: 15px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.custom-select-check {
    margin-left: auto;
    font-size: 11px;
    color: #EEBE31;
}

/* Need Help bar – slim horizontal under calendar */
.need-help-bar {
    margin-top: 10px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.need-help-label {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    color: #2c2c2c;
    white-space: nowrap;
}

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

.need-help-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.need-help-item:hover {
    color: #EEBE31;
}

.need-help-item i {
    font-size: 13px;
    color: #EEBE31;
}

.need-help-item.whatsapp i {
    color: #25D366;
}

.need-help-item.whatsapp:hover {
    color: #25D366;
}

/* ---- Mobile Responsive ---- */
@media (max-width: 768px) {
    .booking-main-section {
        padding: 10px 0 16px;
    }

    .booking-page-title h1 {
        font-size: 1.2rem;
    }

    .booking-page-title p {
        font-size: 12px;
    }

    .booking-form-card {
        padding: 14px;
        border-radius: 10px;
    }

    .booking-form-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    /* Stack 3-col rows into 1-col on mobile */
    .booking-page-compact .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .booking-page-compact .form-floating > .form-control,
    .booking-page-compact .form-floating > .form-select {
        height: calc(3rem + 2px);
        font-size: 14px;
    }

    .booking-page-compact .form-floating > label {
        font-size: 13px;
    }

    .btn-submit-booking {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Need help bar stacks */
    .need-help-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 10px 12px;
    }

    .need-help-actions {
        gap: 10px;
    }

    .need-help-item {
        font-size: 11px;
    }

    /* Custom dropdown – mobile */
    .custom-select-trigger {
        height: calc(3rem + 2px);
        font-size: 14px;
        padding: 0.625rem 0.75rem;
    }

    .custom-select-menu {
        border-radius: 12px;
        padding: 6px;
    }

    .custom-select-option {
        padding: 12px 14px;
        font-size: 14px;
        gap: 12px;
        border-radius: 8px;
    }

    .custom-select-option i {
        font-size: 17px;
        width: 22px;
    }

    .custom-select-label i {
        font-size: 15px;
    }

    /* Mobile action buttons */
    .mobile-action-buttons {
        padding: 8px 12px;
        gap: 8px;
    }

    .btn-mobile {
        flex-direction: row;
        padding: 10px 16px;
        gap: 8px;
        border-radius: 20px;
        font-size: 13px;
    }

    .btn-mobile i {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .booking-page-title h1 {
        font-size: 1.05rem;
    }

    .booking-form-card {
        padding: 10px;
    }

    .booking-page-compact .form-floating > .form-control,
    .booking-page-compact .form-floating > .form-select {
        height: calc(2.75rem + 2px);
        font-size: 13px;
    }

    .booking-page-compact .form-floating > label {
        font-size: 12px;
    }

    .btn-submit-booking {
        font-size: 13px;
        padding: 10px 16px;
    }

    .need-help-item {
        font-size: 10px;
    }

    .custom-select-trigger {
        height: calc(2.75rem + 2px);
        font-size: 13px;
    }

    .custom-select-option {
        padding: 11px 12px;
        font-size: 13px;
    }
}
