/* --- Package Details Specific Styling --- */

.details-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #fff;
}
/* --- Bespoke Hero Visual Specifics --- */
.bespoke-hero-visual {
    flex: 1;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.bespoke-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Slide Container Logic */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Ensure images fill the slide container */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay - Stays constant across all slides */
.bespoke-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    z-index: 2;
}

/* Caption - Only exists in Slide 1 */
.bespoke-hero-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 10;
    color: #ffffff;
}

.hero-tag {
    color: var(--primary-gold);
    letter-spacing: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.bespoke-hero-caption h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 45px);
    line-height: 1.1;
    margin-top: 15px;
    text-transform: uppercase;
}

/* Navigation Buttons */
.bespoke-hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 20;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.hero-nav-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

 
/* --- Right Side Content --- */
.details-content {
    flex: 1;
    padding: 120px 8% 80px;
    color: var(--black);
}

/* --- Breadcrumb Styling --- */
.breadcrumb {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 50px;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--black); /* Bold Home link */
    font-weight: 600;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: #bbb;
    margin-left: 5px;
}

.package-title {
    font-family: var(--font-display);
    font-size: 55px;
    margin-bottom: 10px;
}

.price-tag {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 40px;
}

.price-tag span {
    font-family: var(--font-main);
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
}

.description-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}


/* --- Package Rating Styling --- */
.package-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.package-rating .stars {
    color: var(--primary-gold); /* Using your root gold color */
    font-size: 14px;
    letter-spacing: 2px;
}

.package-rating .rating-count {
    font-family: var(--font-main);
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

 

/* Specifications */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
    margin-bottom: 50px;
}

.spec-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 5px;
}

.spec-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

/* Features */
.features-list h3 {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list i {
    color: var(--primary-gold);
    font-size: 12px;
}

/* Booking Card */
.booking-card {
    margin-top: 60px;
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 40px;
    text-align: center;
}

.alert-tag {
    background: #ff1f1f; /* Action Red */
    color: #fff;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}
.btn-primary-action {
    display: block;
    width: 100%;             /* Ensures button fills the container like a block element */
    margin-top: 30px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 20px;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500;
    transition: 0.3s;
    
    /* Reset Button Defaults */
    border: none;            
    cursor: pointer;
    font-family: var(--font-main);
    text-align: center;
    text-transform: uppercase; /* Keeps the high-end luxury feel */
}

.btn-primary-action:hover {
    background: var(--primary-gold);
}

/* Ensure it looks consistent on mobile within the booking-card */
@media (max-width: 768px) {
    .btn-primary-action {
        font-size: 14px;
        padding: 18px;
    }
}

 
/* --- Review Submission Styling --- */
.review-submission {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.submission-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.submission-header p {
    font-size: 13px;
    color: #888;
    margin-bottom: 35px;
}

/* Star Input Logic */
.rating-input-group {
    margin-bottom: 30px;
}

.input-label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 12px;
}

.star-rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
}

.star-rating-select input { display: none; }

.star-rating-select label {
    cursor: pointer;
    font-size: 18px;
    color: #e0e0e0;
    transition: 0.3s;
}

.star-rating-select label:hover,
.star-rating-select label:hover ~ label,
.star-rating-select input:checked ~ label {
    color: var(--primary-gold);
}

/* Form Controls */
.bespoke-review-form .form-group {
    margin-bottom: 20px;
}

.bespoke-review-form input, 
.bespoke-review-form textarea {
    width: 100%;
    padding: 18px;
    background: #fbfbfb;
    border: 1px solid #eee;
    font-family: var(--font-main);
    font-size: 12px;
    letter-spacing: 1px;
    outline: none;
    transition: 0.3s ease;
}

.bespoke-review-form input:focus, 
.bespoke-review-form textarea:focus {
    border-color: var(--primary-gold);
    background: #fff;
}

/* Submit Button */
.btn-submit-review {
    width: 100%;
    padding: 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-submit-review:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
}

.package-actions {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.action-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #888;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 0;
}

.action-btn:hover {
    color: var(--primary-gold);
}

/* Share Dropdown Menu */
.share-options {
    position: absolute;
    top: 30px;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 10px 0;
    z-index: 100;
    display: none; /* Toggled via JS */
    min-width: 150px;
}

.share-options.active {
    display: block;
    animation: slideIn 0.3s ease;
}

.share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 12px;
    color: var(--black);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: 0.2s;
}

.share-item:hover {
    background: #f9f9f9;
    color: var(--primary-gold);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* --- Package View Mobile Responsiveness --- */

@media (max-width: 992px) {
    /* Stack the split layout vertically */
    .details-wrapper {
        flex-direction: column;
    }

    /* Fixed height for the hero image section on mobile */
    .bespoke-hero-visual {
        flex: none;
        height: 55vh; /* Takes up over half the screen */
        position: relative;
        width: 100%;
        margin-top: 70px;
    }

    /* Adjusting caption placement for mobile visibility */
    .bespoke-hero-caption {
        bottom: 25px;
        left: 20px;
        right: 20px;
    }

    .bespoke-hero-caption h2 {
        font-size: 28px;
    }

    /* Shrink navigation buttons for mobile */
    .bespoke-hero-nav {
        padding: 0 15px;
    }

    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    /* --- Right Side (Content) Mobile Adjustments --- */
    .details-content {
        padding: 50px 6% 60px; /* Reduced top padding */
        text-align: center; /* Center all text for luxury feel */
    }

    .breadcrumb {
        justify-content: center;
        display: flex;
        margin-bottom: 30px;
    }

    .package-title {
        font-size: 32px; /* Reduced from 55px */
    }

    .package-rating {
        justify-content: center;
    }

    .package-actions {
        justify-content: center;
    }

    /* Ensure share menu pops up in a centered position */
    .share-options {
        left: 50%;
        transform: translateX(-50%);
    }

    .price-tag {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .description-block p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Transform spec grid to a vertical stack or 2-column on mobile */
    .spec-grid {
        grid-template-columns: 1fr; /* Stacked for clarity */
        gap: 20px;
        padding: 25px 0;
    }

    /* Features List centering */
    .features-list {
        text-align: left; /* Keep list left-aligned for better reading */
        max-width: 320px;
        margin: 0 auto;
    }

    .features-list h3 {
        text-align: center;
    }

    /* Booking Card scale down */
    .booking-card {
        padding: 30px 20px;
        margin-top: 50px;
    }

    .booking-card h4 {
        font-size: 18px;
    }

    /* Review Form centering */
    .submission-header h3 {
        font-size: 20px;
    }

    .star-rating-select {
        justify-content: center; /* Center the star selection */
        flex-direction: row-reverse;
    }

    .bespoke-review-form input, 
    .bespoke-review-form textarea {
        text-align: center;
        padding: 15px;
    }

    .btn-submit-review,
    .btn-primary-action {
        padding: 18px;
        font-size: 15px;
    }
}

 

.review-header h3 {
    font-family: 'Playfair Display', serif; /* Elegant Serif */
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.review-header h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ff1f1f; /* Your Action Red */
}

.review-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-top: 10px;
}


/* --- Bespoke Toast Styling --- */
.bespoke-toast {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    min-width: 320px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--primary-gold);
    color: white;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bespoke-toast.error {
    border-left-color: #ff1f1f; /* Your Action Red */
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-content i {
    font-size: 24px;
    color: var(--primary-gold);
}

.bespoke-toast.error i {
    color: #ff1f1f;
}

.toast-text span {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 4px;
}

.toast-text p {
    font-size: 11px;
    color: #bbb;
    margin: 0;
    letter-spacing: 1px;
}

.toast-close {
    background: none;
    border: none;
    color: #555;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    transition: 0.3s;
}

.toast-close:hover { color: white; }

/* Progress bar timer effect */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgba(255,255,255,0.1);
}

.toast-progress::after {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-gold);
    animation: toastTimer 5s linear forwards;
}

.bespoke-toast.error .toast-progress::after { background: #ff1f1f; }

@keyframes slideInLeft {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

@keyframes toastTimer {
    from { width: 100%; }
    to { width: 0%; }
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .bespoke-toast {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        min-width: calc(100% - 20px);
    }
}



/* Modal Root */
.bespoke-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bespoke-modal.active { display: flex; }

/* Dark Glass Overlay */
.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Modal Container */
.modal-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #fff;
    display: flex;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
    animation: modalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Left Side - Visual */
.modal-left {
    flex: 1;
    position: relative;
    background: #000;
    display: none; /* Hidden on mobile */
}

@media (min-width: 768px) { .modal-left { display: block; } }

.modal-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.modal-img-caption {
    position: absolute;
    bottom: 40px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

.modal-img-caption .tag {
    color: var(--primary-gold);
    font-size: 10px;
    letter-spacing: 3px;
}

/* Right Side - Form */
.modal-right {
    flex: 1.2;
    padding: 60px 50px;
    position: relative;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--black);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-header p {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
    color: #999;
    transition: 0.3s;
}

.modal-close:hover { color: var(--black); }

/* Form Elements */
.bespoke-booking-form .input-group { margin-bottom: 20px; }

.bespoke-booking-form label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000000;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bespoke-booking-form input, 
.bespoke-booking-form textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #eee;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.bespoke-booking-form input:focus {
    border-bottom-color: var(--primary-gold);
}

.btn-confirm-booking {
    width: 100%;
    background: var(--black);
    color: #fff;
    border: none;
    padding: 20px;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.4s;
}

.btn-confirm-booking:hover {
    background: var(--primary-gold);
}


/* --- Mobile Specific Optimization for Booking Modal --- */
@media (max-width: 768px) {
    .bespoke-modal {
        padding: 10px; /* Bring modal closer to screen edges */
    }

    .modal-container {
        flex-direction: column; /* Stack visual and form */
        max-height: 90vh; /* Prevent modal from going off-screen */
        overflow-y: auto; /* Allow scrolling if form is long */
        border-radius: 0px; /* Smoother premium corners for mobile */
    }

    /* Show a smaller version of the image at the top instead of hiding it */
    .modal-left {
        display: block; 
        flex: none;
        height: 180px; /* Compact image height */
    }

    .modal-img-caption {
        bottom: 15px;
        left: 20px;
    }

    .modal-img-caption h4 {
        font-size: 18px;
    }

    .modal-right {
        padding: 30px 20px; /* Tighten padding for mobile thumbs */
        text-align: center;
    }

    .modal-header h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .modal-header p {
        font-size: 12px;
        margin-bottom: 25px;
    }

    /* Stack form rows (Name and Phone) vertically on small screens */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bespoke-booking-form input, 
    .bespoke-booking-form textarea {
        text-align: center; /* Align with centered headers */
        font-size: 15px; /* Prevent iOS zoom-on-focus */
        padding: 15px 0;
    }

    .bespoke-booking-form label {
        margin-top: 10px;
        letter-spacing: 1px;
    }

    .btn-confirm-booking {
        margin-top: 15px;
        padding: 18px;
        font-size: 12px;
    }

    /* Reposition Close Button for easier reach */
    .modal-close {
        top: 10px;
        right: 15px;
        color: #fff; /* White against the image background */
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        font-size: 28px;
    }
}



/* Mini Loading Bar inside the button */
.loading-bar-mini {
    height: 2px;
    width: 100%;
    background: rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.loading-bar-mini::after {
    content: '';
    position: absolute;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-gold); /* Gold bar on black button */
    animation: loadingProgress 2.5s linear forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Receipt Animation */
.bespoke-receipt {
    text-align: center;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bespoke-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    padding: 5px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    background: #fff;
}

.time-slot:hover:not(.booked) {
    border-color: #000;
    background: #f9f9f9;
}

.time-slot.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

.time-slot.booked {
    background: #f0f0f0;
    color: #ccc;
    cursor: not-allowed;
    text-decoration: line-through;
    border-color: #eee;
}

.select-date-msg {
    grid-column: span 3;
    font-size: 12px;
    color: #888;
    font-style: italic;
}






/* --- Live Status Section (Full Updated) --- */

.live-status-section {
    margin: 40px 0;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 2px; /* Minimalist sharp edges */
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #f8f8f8;
    padding-bottom: 15px;
}

/* Scrollable Container Logic */
.status-body {
    max-height: 300px; /* Specific height for the booking list */
    overflow-y: auto;  /* Scroll enabled */
    padding-right: 10px;
}

/* Custom Minimalist Scrollbar (Apple Style) */
.status-body::-webkit-scrollbar {
    width: 4px;
}
.status-body::-webkit-scrollbar-track {
    background: #f9f9f9;
}
.status-body::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}
.status-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

.live-indicator {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-indicator .dot {
    width: 6px;
    height: 6px;
    background: #ff1f1f;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff1f1f;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.status-date {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
}

.date-group {
    margin-bottom: 20px;
}

.group-date {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    border-left: 2px solid var(--primary-gold);
    padding-left: 10px;
}

.busy-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.busy-tag {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.busy-tag:hover {
    border-color: #ddd;
    background: #fff;
}

.busy-tag i {
    font-size: 10px;
    color: #ff1f1f;
}

.status-note {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.status-free {
    color: #28a745;
    font-size: 13px;
    font-weight: 500;
}

/* --- Upcoming Slots Mobile Optimization --- */

@media (max-width: 768px) {
    .live-status-section {
        padding: 15px;
        margin: 25px 0;
        text-align: left;
    }

    .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .status-body {
        max-height: 350px; /* Slightly taller for mobile ease */
        padding-right: 5px;
    }

    .date-group {
        margin-bottom: 25px;
    }

    .group-date {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .busy-tags-container {
        display: grid;
        grid-template-columns: 1fr; 
        gap: 8px;
    }

    .busy-tag {
        padding: 14px;
        font-size: 13px;
        justify-content: center;
        background: #fafafa;
        border-radius: 4px;
    }

    .status-free {
        font-size: 12px;
        line-height: 1.5;
        text-align: center;
        padding: 20px;
    }
}