/**
 * Booking System Styles
 * Shared styles for both customer and admin interfaces
 */

/* Base Typography - Brand Fonts */
body {
    font-family: 'BIZ UDPGothic', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(200, 200, 200, 1);
}

/* Body text elements */
p, span, div, label, input, select, textarea, button {
    font-family: 'BIZ UDPGothic', sans-serif;
}

/* Form elements inherit proper typography */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
input[type="date"], 
input[type="time"], 
input[type="number"],
select, 
textarea {
    font-family: 'BIZ UDPGothic', sans-serif;
    font-weight: 400;
}

/* Ensure parent container uses flexbox for proper ordering */
.full-home-page {
    display: flex;
    flex-direction: column;
}

/* Ensure navigation is visible and positioned above content */
.full-nav-bar {
    position: relative;
    z-index: 1000;
    background-color: #111111;
    width: 100%;
    order: 1;
}

/* Ensure navigation links are visible */
.full-frame1000015929 a {
    color: rgba(200, 200, 200, 1) !important;
    text-decoration: none !important;
}

.full-frame1000015929 a:hover {
    color: rgba(224, 195, 0, 1) !important;
}

.full-text106 {
    color: rgba(224, 195, 0, 1) !important;
}

/* Admin Dashboard Container */
.admin-dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #111111;
    color: #ffffff;
    order: 2; /* Ensure admin content comes after navigation */
    position: relative;
    z-index: 1;
    margin-top: 0; /* Remove any top margin that might push it above nav */
}

/* Booking System Container (for customer booking page) */
.booking-system-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #111111;
    color: #ffffff;
    order: 2;
    position: relative;
    z-index: 1;
}

/* Admin Dashboard Specific Styles */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
    width: 100%;
}

.login-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    border: 1px solid rgba(224, 195, 0, 0.3);
}

.login-header h1 {
    color: rgba(224, 195, 0, 1);
    font-size: 28px;
    margin-bottom: 16px;
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
}

.login-header p {
    color: rgba(200, 200, 200, 1);
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    font-family: 'BIZ UDPGothic', sans-serif;
}

.dashboard-section {
    padding: 20px 30px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(224, 195, 0, 0.3);
}

.dashboard-header h1 {
    color: rgba(224, 195, 0, 1);
    font-size: 32px;
    font-family: 'Bebas Neue', sans-serif;
}

.logout-btn {
    background: rgba(220, 53, 69, 1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.logout-btn:hover {
    background: rgba(200, 35, 51, 1);
}

.dashboard-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(224, 195, 0, 0.3);
}

.tab-btn {
    background: transparent;
    color: rgba(200, 200, 200, 1);
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: rgba(224, 195, 0, 1);
    border-bottom-color: rgba(224, 195, 0, 1);
}

.tab-btn:hover {
    color: rgba(224, 195, 0, 1);
}

.tab-content {
    display: none;
}

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

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(224, 195, 0, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(224, 195, 0, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(224, 195, 0, 1);
    box-shadow: 0 0 0 2px rgba(224, 195, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(200, 200, 200, 0.6);
}

.submit-btn {
    background: rgba(224, 195, 0, 1);
    color: rgba(17, 17, 17, 1);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: rgba(255, 215, 0, 1);
}

.submit-btn:disabled {
    background: rgba(200, 200, 200, 0.3);
    cursor: not-allowed;
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: rgba(220, 53, 69, 1);
    padding: 12px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-content {
    background: rgba(17, 17, 17, 1);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(224, 195, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(224, 195, 0, 0.3);
}

.modal-header h2 {
    color: rgba(224, 195, 0, 1);
    font-size: 24px;
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(200, 200, 200, 1);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: rgba(224, 195, 0, 1);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(224, 195, 0, 0.3);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-primary {
    background: rgba(224, 195, 0, 1);
    color: rgba(17, 17, 17, 1);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.btn-secondary {
    background: transparent;
    color: rgba(200, 200, 200, 1);
    border: 1px solid rgba(200, 200, 200, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: rgba(255, 215, 0, 1);
}

.btn-secondary:hover {
    border-color: rgba(224, 195, 0, 1);
    color: rgba(224, 195, 0, 1);
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
}

.booking-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(224, 195, 0, 1);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.test-notice {
    background: rgba(224, 195, 0, 0.1);
    border: 2px solid rgba(224, 195, 0, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin: 20px auto;
    max-width: 600px;
    font-size: 16px;
    color: rgba(224, 195, 0, 1);
    font-weight: 700;
}

.booking-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Calendar Section */
.calendar-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(224, 195, 0, 0.2);
    margin-top: 40px;
}

.calendar-instructions {
    background-color: rgba(224, 195, 0, 0.1);
    border: 1px solid rgba(224, 195, 0, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.calendar-instructions p {
    color: rgba(224, 195, 0, 1);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.calendar-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: rgba(224, 195, 0, 1);
    margin: 0;
    letter-spacing: 1px;
}

.calendar-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    background: rgba(224, 195, 0, 1);
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #111111;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-2px);
}

.month-display {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    min-width: 150px;
    text-align: center;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;  /* Reduced from 8px */
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}

/* Ensure all grid items are equal size */
.calendar-grid > * {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
}

/* Force equal sizing for calendar days specifically */
.calendar-grid .calendar-day {
    min-width: 0;
    min-height: 0;
    flex-shrink: 0;
    flex-grow: 1;
    flex-basis: 0;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: rgba(224, 195, 0, 1);
    padding: 10px 5px;
    font-size: 14px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;  /* Changed to support dot below number */
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
    font-size: 16px;  /* Increased font size for desktop */
    padding: 4px;  /* Add some padding for better appearance */
    box-sizing: border-box;  /* Ensure proper sizing */
    position: relative;
    overflow: hidden;  /* Prevent overflow */
    min-height: 0;  /* Allow flex shrinking */
    white-space: nowrap;  /* Prevent text wrapping */
    width: 100%;  /* Force full width */
    height: 100%;  /* Force full height */
    flex: 1 1 0;  /* Equal flex sizing */
}

.calendar-day.empty {
    cursor: default;
    opacity: 0;
}

.calendar-day.disabled {
    color: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.available {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.calendar-day.available:hover {
    background: rgba(224, 195, 0, 0.2);
    border-color: rgba(224, 195, 0, 0.5);
    transform: translateY(-2px);
}

.calendar-day.today {
    background: rgba(224, 195, 0, 0.3);
    border-color: rgba(224, 195, 0, 0.7);
    font-weight: 700;
}

.calendar-day.selected {
    background: rgba(224, 195, 0, 1);
    color: #111111;
    border-color: rgba(224, 195, 0, 1);
    font-weight: 700;
}

.calendar-day.selected:hover {
    background: rgba(224, 195, 0, 1);
    border-color: rgba(224, 195, 0, 1);
    transform: none;
}

.availability-indicator {
    width: 6px;  /* Increased size for better visibility */
    height: 6px;
    background: rgba(224, 195, 0, 1);
    border-radius: 50%;
    margin-top: 3px;  /* Increased spacing */
    display: none;  /* Hidden by default */
    flex-shrink: 0;  /* Prevent shrinking */
    animation: pulse 2s infinite;  /* Subtle pulse animation */
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.calendar-day.has-availability .availability-indicator {
    display: block;
}

/* Ensure day numbers don't wrap */
.calendar-day span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Responsive font sizes for mobile */
@media (max-width: 768px) {
    .calendar-day {
        font-size: 12px;  /* Smaller on tablet */
        padding: 2px;  /* Minimal padding */
    }
    
    .availability-indicator {
        width: 4px;  /* Smaller dot on tablet */
        height: 4px;
        margin-top: 2px;
    }
    
    /* Availability calendar responsive */
    .availability-calendar-day {
        font-size: 12px;
        padding: 2px;
    }
    
    .calendar-day-number {
        font-size: 12px;
    }
    
    .availability-times-indicator {
        font-size: 9px;
        margin-top: 1px;
    }
}

@media (max-width: 480px) {
    .calendar-day {
        font-size: 10px;  /* Smallest size for very small screens */
        padding: 1px;  /* Minimal padding */
    }
    
    .availability-indicator {
        width: 3px;  /* Smallest dot on mobile */
        height: 3px;
        margin-top: 1px;
    }
    
    .calendar-grid {
        gap: 4px;  /* Tighter spacing on very small screens */
    }
    
    /* Availability calendar mobile responsive */
    .availability-calendar-day {
        font-size: 10px;
        padding: 1px;
    }
    
    .calendar-day-number {
        font-size: 10px;
    }
    
    .availability-times-indicator {
        font-size: 8px;
        margin-top: 1px;
    }
    
    .bookings-calendar-grid {
        gap: 4px;
    }
}

/* Time Slots */
.time-slots h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: rgba(224, 195, 0, 1);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.time-slot-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot-btn:hover {
    background: rgba(224, 195, 0, 0.2);
    border-color: rgba(224, 195, 0, 0.5);
    transform: translateY(-2px);
}

.time-slot-btn.selected {
    background: rgba(224, 195, 0, 1);
    border-color: rgba(224, 195, 0, 1);
    color: #111111;
    font-weight: 700;
}

.no-selection, .no-slots, .time-slots-placeholder, .loading, .error {
    text-align: center;
    padding: 20px;
    color: #ccc;
    font-style: italic;
}

.error {
    color: #ff6b6b;
}

/* Booking Form Section */
.booking-form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(224, 195, 0, 0.2);
}

.booking-form-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: rgba(224, 195, 0, 1);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

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

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

.form-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(224, 195, 0, 0.7);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Selected Booking Display */
.selected-booking-details {
    background: rgba(224, 195, 0, 0.1);
    border: 2px solid rgba(224, 195, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.selected-booking-details h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: rgba(224, 195, 0, 1);
    margin: 0 0 15px 0;
    letter-spacing: 1px;
}

.selected-booking-details p {
    margin: 5px 0;
    color: #ffffff;
}

/* Submit Button */
.submit-btn {
    background: rgba(224, 195, 0, 1);
    border: 2px solid rgba(17, 17, 17, 1);
    border-radius: 8px;
    padding: 16px 24px;
    color: rgba(17, 17, 17, 1);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-top: 20px;
}

.submit-btn:hover:not(:disabled) {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* Modals */
.modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #111111;
    margin: 5% auto;
    padding: 0;
    border: 2px solid rgba(224, 195, 0, 0.3);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    background: rgba(224, 195, 0, 0.1);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(224, 195, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: rgba(224, 195, 0, 1);
    margin: 0;
    letter-spacing: 1px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: rgba(224, 195, 0, 1);
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(224, 195, 0, 0.3);
    text-align: center;
}

.btn-primary {
    background: rgba(224, 195, 0, 1);
    border: 2px solid rgba(17, 17, 17, 1);
    border-radius: 8px;
    padding: 12px 24px;
    color: rgba(17, 17, 17, 1);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 215, 0, 1);
    transform: translateY(-2px);
}

/* Confirmation Modal */
.confirmation-details {
    text-align: center;
}

.success-icon {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.confirmation-details h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: rgba(224, 195, 0, 1);
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.booking-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.booking-details p {
    margin: 8px 0;
    color: #ffffff;
}

.confirmation-note {
    font-style: italic;
    color: #ccc;
    margin-top: 20px;
}

/* Error Modal */
.error-details {
    text-align: center;
}

.error-icon {
    font-size: 48px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.error-details h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #ff6b6b;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.success-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.success-icon {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 10px;
}

.success-details p {
    font-size: 18px;
    color: #4CAF50;
    margin: 0;
    font-weight: 500;
}

    .success-details h3 {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 24px;
        color: #4CAF50;
        margin: 0 0 20px 0;
        letter-spacing: 1px;
    }

    /* 90-Day View Styles */
    .availability-actions {
        text-align: center;
        margin: 20px 0;
    }

    .ninety-day-modal {
        max-width: 95vw;
        max-height: 90vh;
        width: 95vw;
    }

    .ninety-day-info {
        text-align: center;
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(224, 195, 0, 0.3);
        border-radius: 8px;
    }

    .ninety-day-info p {
        color: rgba(200, 200, 200, 1);
        margin: 0;
        font-style: italic;
    }

    .ninety-day-table-container {
        max-height: 60vh;
        overflow: auto;
        border: 1px solid rgba(224, 195, 0, 0.3);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
    }

    .ninety-day-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 12px;
    }

    .ninety-day-table th {
        background: rgba(224, 195, 0, 0.2);
        color: rgba(224, 195, 0, 1);
        padding: 6px 2px;
        text-align: center;
        font-weight: bold;
        border: 1px solid rgba(224, 195, 0, 0.3);
        position: sticky;
        top: 0;
        z-index: 10;
        font-size: 11px;
    }

    .ninety-day-table td {
        padding: 4px 2px;
        text-align: center;
        border: 1px solid rgba(224, 195, 0, 0.2);
        vertical-align: middle;
        font-size: 11px;
    }

    .ninety-day-table tr:nth-child(even) {
        background: rgba(255, 255, 255, 0.02);
    }

    .ninety-day-table tr:hover {
        background: rgba(224, 195, 0, 0.1);
    }

    .ninety-day-table .day-column {
        background: rgba(224, 195, 0, 0.1);
        font-weight: bold;
        color: rgba(224, 195, 0, 1);
        min-width: 120px;
        text-align: left;
        padding-left: 8px;
    }

    .ninety-day-table .time-column {
        min-width: 45px;
        max-width: 50px;
        color: rgba(76, 175, 80, 1);
        background: rgba(76, 175, 80, 0.1);
        font-size: 11px;
    }

    .ninety-day-table .available-slot {
        color: rgba(76, 175, 80, 1);
        background: rgba(76, 175, 80, 0.1);
        font-weight: bold;
    }

    .ninety-day-table .booked-slot {
        color: rgba(76, 175, 80, 1);
        background: rgba(76, 175, 80, 0.1);
        font-weight: bold;
        cursor: help;
    }

    .ninety-day-table .unavailable-cell {
        color: rgba(244, 67, 54, 1);
        background: rgba(244, 67, 54, 0.1);
        font-weight: bold;
    }

    .ninety-day-table .empty-cell {
        background: transparent;
        color: rgba(100, 100, 100, 0.5);
    }

    .ninety-day-table .weekend-row {
        background: rgba(255, 193, 7, 0.05);
    }

    .ninety-day-table .weekend-row .day-column {
        color: rgba(255, 193, 7, 1);
        background: rgba(255, 193, 7, 0.1);
    }

    /* Booking Actions Styles */
    .booking-actions {
        display: flex;
        gap: 10px;
        margin-top: 15px;
        justify-content: flex-end;
    }


    .btn-danger {
        background: rgba(244, 67, 54, 0.9);
        color: rgba(255, 255, 255, 1);
        border: 2px solid rgba(244, 67, 54, 1);
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-danger:hover {
        background: rgba(244, 67, 54, 1);
        color: rgba(255, 255, 255, 1);
        border-color: rgba(244, 67, 54, 1);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
    }

    .btn-danger:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(244, 67, 54, 0.3);
    }

    /* Individual booking item styling */
    .booking-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(224, 195, 0, 0.3);
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .booking-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(224, 195, 0, 0.5);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(224, 195, 0, 0.2);
    }

    .booking-details {
        color: rgba(200, 200, 200, 1);
        line-height: 1.6;
    }

    .booking-details p {
        margin: 5px 0;
        font-size: 14px;
    }

    .booking-details strong {
        color: rgba(224, 195, 0, 1);
        font-weight: 600;
    }

    /* Booking header and status styling */
    .booking-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(224, 195, 0, 0.2);
    }

    .booking-header h3 {
        color: rgba(224, 195, 0, 1);
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }


/* Responsive Design */
@media (max-width: 1200px) {
    .booking-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-system-container {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .booking-header h1 {
        font-size: 36px;
    }
    
    .calendar-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .calendar-header h2,
    .booking-form-section h2 {
        font-size: 24px;
    }
    
    .booking-system-container {
        padding: 30px 15px;
    }
    
    .calendar-section,
    .booking-form-section {
        padding: 20px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .booking-header h1 {
        font-size: 28px;
    }
    
    .calendar-day {
        font-size: 14px;
    }
    
    .time-slot-btn {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Calendar Styles */
.availability-calendar-description {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 195, 0, 0.3);
    border-radius: 8px;
}

.availability-calendar-description p {
    color: rgba(200, 200, 200, 1);
    font-size: 16px;
    margin: 0;
    font-style: italic;
}

.bookings-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.calendar-day-cell {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 195, 0, 0.2);
    padding: 10px;
    min-height: 100px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day-cell:hover {
    border-color: rgba(224, 195, 0, 0.6);
    background: rgba(224, 195, 0, 0.1);
}

.calendar-day-cell.has-bookings {
    border-color: rgba(224, 195, 0, 0.6);
    background: rgba(224, 195, 0, 0.1);
}

.calendar-day-cell.today {
    border-color: rgba(224, 195, 0, 1);
    background: rgba(224, 195, 0, 0.2);
}

.calendar-day-number {
    font-weight: bold;
    color: rgba(224, 195, 0, 1);
    margin-bottom: 5px;
}

.booking-indicator {
    background: rgba(76, 175, 80, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    margin: 2px 0;
    display: block;
}

.booking-indicator.pending {
    background: rgba(255, 193, 7, 0.8);
    color: #111111;
}

.booking-indicator.cancelled {
    background: rgba(244, 67, 54, 0.8);
    color: white;
}

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

.calendar-month-year {
    font-size: 24px;
    color: rgba(224, 195, 0, 1);
    font-weight: bold;
}

.calendar-nav-btn {
    background: rgba(224, 195, 0, 0.2);
    border: 1px solid rgba(224, 195, 0, 0.4);
    color: rgba(224, 195, 0, 1);
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: rgba(224, 195, 0, 0.4);
    border-color: rgba(224, 195, 0, 0.6);
}

.view-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.view-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 195, 0, 0.3);
    color: rgba(200, 200, 200, 1);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-toggle-btn.active {
    background: rgba(224, 195, 0, 0.2);
    border-color: rgba(224, 195, 0, 0.6);
    color: rgba(224, 195, 0, 1);
}

/* Availability Calendar Styles */
.bookings-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;  /* Match main calendar gap */
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}

/* Ensure all grid items are equal size */
.bookings-calendar-grid > * {
    min-width: 0;
    min-height: 0;
    width: 100%;
    height: 100%;
}

.availability-calendar-day {
    aspect-ratio: 1;  /* Make square like main calendar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 195, 0, 0.2);
    padding: 4px;  /* Match main calendar padding */
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;  /* Match main calendar border radius */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;  /* Match main calendar font size */
    flex: 1 1 0;
}

.availability-calendar-day.available {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.5);
}

.availability-calendar-day.unavailable {
    background: rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.5);
}

.availability-calendar-day.past-date {
    opacity: 0.5;
    filter: grayscale(30%);
}

.calendar-day-number {
    font-size: 16px;  /* Match main calendar font size */
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    flex-shrink: 0;
}

.availability-times-indicator {
    font-size: 10px;  /* Smaller text for status */
    font-weight: normal;
    margin-top: 2px;  /* Reduced spacing */
    line-height: 1.2;
    word-break: break-word;
    flex-shrink: 0;
    text-align: center;
}

.availability-calendar-day.empty,
.calendar-day-cell.empty {
    background: transparent;
    border: none;
    cursor: default;
}

/* Calendar day headers for availability calendar */
.bookings-calendar-grid .calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: rgba(224, 195, 0, 1);
    padding: 10px 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability-times-indicator.available {
    color: rgba(76, 175, 80, 1);
}

.availability-times-indicator.partial {
    color: rgba(255, 193, 7, 1);
}

.availability-times-indicator.unavailable {
    color: rgba(244, 67, 54, 1);
}

/* Default Schedule Editor */
.default-schedule-editor {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid rgba(224, 195, 0, 0.3);
}

.default-schedule-editor h3 {
    color: rgba(224, 195, 0, 1);
    margin-bottom: 15px;
}

.schedule-day {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.schedule-day-label {
    min-width: 100px;
    color: rgba(200, 200, 200, 1);
    font-weight: bold;
}

.schedule-day-inputs {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.schedule-day-checkbox {
  margin-right: 10px;
}

/* Day Availability Modal */
.day-availability-info {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(224, 195, 0, 0.3);
  border-radius: 8px;
}

.day-availability-info p {
  color: rgba(200, 200, 200, 1);
  margin: 0;
  font-style: italic;
}

.day-availability-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.availability-slot {
  padding: 15px;
  border: 2px solid rgba(224, 195, 0, 0.3);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.availability-slot:hover {
  border-color: rgba(224, 195, 0, 0.6);
  background: rgba(224, 195, 0, 0.1);
  transform: translateY(-2px);
}

.availability-slot.available {
  background: rgba(76, 175, 80, 0.2);
  border-color: rgba(76, 175, 80, 0.6);
  color: rgba(76, 175, 80, 1);
}

.availability-slot.unavailable {
    background: rgba(244, 67, 54, 0.2);
    border-color: rgba(244, 67, 54, 0.6);
    color: rgba(244, 67, 54, 1);
}

.availability-slot.read-only {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.availability-slot.has-booking {
    background-color: rgba(59, 130, 246, 0.3);
    border: 2px solid rgba(59, 130, 246, 0.6);
    cursor: not-allowed;
    position: relative;
}

.availability-slot.has-booking:hover {
    background-color: rgba(59, 130, 246, 0.4);
}

.availability-slot.has-booking::after {
    content: "📅";
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 10px;
}

.slot-time {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.slot-status {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Exception Management */
.exception-item {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    padding: 12px;
    border-radius: 6px;
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exception-item.available {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.exception-details {
    flex: 1;
}

.exception-date {
    font-weight: bold;
    color: rgba(224, 195, 0, 1);
}

.exception-time {
    color: rgba(200, 200, 200, 1);
    font-size: 14px;
}

.exception-reason {
    color: rgba(200, 200, 200, 0.8);
    font-size: 12px;
    margin-top: 2px;
}

.exception-actions {
    display: flex;
    gap: 10px;
}

/* Add Manual Booking Button */
.add-manual-booking-btn {
    background: linear-gradient(135deg, rgba(224, 195, 0, 0.9), rgba(224, 195, 0, 0.7));
    border: 2px solid rgba(224, 195, 0, 1);
    color: #111111;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(224, 195, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.add-manual-booking-btn:hover {
    background: linear-gradient(135deg, rgba(224, 195, 0, 1), rgba(224, 195, 0, 0.9));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 195, 0, 0.4);
    border-color: rgba(224, 195, 0, 1);
}

.add-manual-booking-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(224, 195, 0, 0.3);
}

.add-manual-booking-btn::before {
    content: '+';
    margin-right: 8px;
    font-size: 18px;
    font-weight: bold;
}

.bookings-controls-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

/* Calendar Responsive Design */
@media (max-width: 768px) {
    .bookings-calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
    }
    
    .calendar-day-cell {
        min-height: 60px;
        padding: 5px;
    }
    
    .booking-indicator {
        font-size: 10px;
        padding: 1px 4px;
    }
    
    .schedule-day {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .schedule-day-inputs {
        width: 100%;
        justify-content: space-between;
    }
    
    .add-manual-booking-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Group Sessions Section */
.group-sessions-section {
    margin: 40px 0;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(224, 195, 0, 0.2);
}

.group-sessions-header {
    text-align: center;
    margin-bottom: 30px;
}

.group-sessions-header h2 {
    color: rgba(224, 195, 0, 1);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.group-sessions-header p {
    color: rgba(200, 200, 200, 1);
    font-size: 16px;
    margin: 0;
}

.group-sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.group-session-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(224, 195, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}


.group-session-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.group-session-title {
    color: rgba(224, 195, 0, 1);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.group-session-date {
    background-color: rgba(224, 195, 0, 0.2);
    color: rgba(224, 195, 0, 1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 15px;
}

.group-session-details {
    margin-bottom: 15px;
}

.group-session-time {
    color: rgba(200, 200, 200, 1);
    font-size: 16px;
    font-family: 'BIZ UDPGothic', sans-serif;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.group-session-time::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('public/clock4010-0e9.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
    vertical-align: middle;
}

.group-session-location {
    color: rgba(200, 200, 200, 1);
    font-size: 16px;
    font-family: 'BIZ UDPGothic', sans-serif;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.group-session-location::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('public/mappin4010-0oy6e.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
    vertical-align: middle;
}

.group-session-description {
    color: rgba(180, 180, 180, 1);
    font-size: 14px;
    font-family: 'BIZ UDPGothic', sans-serif;
    line-height: 1.5;
    margin-bottom: 15px;
}

.group-session-spaces {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.group-session-spaces-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-session-spaces-text {
    color: rgba(200, 200, 200, 1);
    font-size: 14px;
    font-family: 'BIZ UDPGothic', sans-serif;
}

.group-session-spaces-count {
    color: rgba(224, 195, 0, 1);
    font-weight: 600;
    font-size: 16px;
    font-family: 'BIZ UDPGothic', sans-serif;
}

.group-session-price {
    color: rgba(224, 195, 0, 1);
    font-size: 18px;
    font-family: 'BIZ UDPGothic', sans-serif;
    font-weight: 600;
    text-align: right;
}

.group-session-price:not(.group-session-price-none)::before {
    content: "£";
}

.group-session-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.group-session-status.available {
    background-color: rgba(34, 197, 94, 0.2);
    color: rgba(34, 197, 94, 1);
}

.group-session-status.full {
    background-color: rgba(239, 68, 68, 0.2);
    color: rgba(239, 68, 68, 1);
}

.group-session-status.low-spaces {
    background-color: rgba(251, 191, 36, 0.2);
    color: rgba(251, 191, 36, 1);
}

.no-group-sessions {
    text-align: center;
    color: rgba(180, 180, 180, 1);
    font-size: 16px;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(224, 195, 0, 0.3);
}

.group-sessions-loading {
    text-align: center;
    color: rgba(224, 195, 0, 1);
    font-size: 16px;
    padding: 40px 20px;
}

/* RRsponsive adjustments for group sessions */
@media (max-width: 768px) {
    .group-sessions-section {
        margin: 30px 0;
        padding: 20px;
    }
    
    .group-sessions-header h2 {
        font-size: 24px;
    }
    
    .group-sessions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .group-session-card {
        padding: 15px;
    }
    
    .group-session-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .group-session-date {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .group-session-spaces {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .group-session-price {
        text-align: left;
        align-self: flex-start;
    }
}

/* Admin Group Sessions Management */
.group-sessions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(224, 195, 0, 0.3);
}

.group-sessions-header h2 {
    color: rgba(224, 195, 0, 1);
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.add-group-session-btn {
    background-color: rgba(224, 195, 0, 1);
    color: #111111;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-group-session-btn:hover {
    background-color: rgba(255, 215, 0, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 195, 0, 0.3);
}

.group-sessions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.admin-group-session-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(224, 195, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.admin-group-session-card.booking-closed {
    border-color: rgba(239, 68, 68, 0.5);
    background-color: rgba(239, 68, 68, 0.1);
}

.admin-group-session-card.booking-open {
    border-color: rgba(34, 197, 94, 0.5);
    background-color: rgba(34, 197, 94, 0.1);
}


.admin-group-session-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.admin-group-session-title {
    color: rgba(224, 195, 0, 1);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1 1 100%;
}

.admin-group-session-type {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background-color: rgba(224, 195, 0, 0.2);
    color: rgba(224, 195, 0, 1);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.admin-group-session-actions {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.admin-group-session-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-group-session-btn.edit {
    background-color: rgba(59, 130, 246, 0.2);
    color: rgba(59, 130, 246, 1);
}

.admin-group-session-btn.edit:hover {
    background-color: rgba(59, 130, 246, 0.3);
}

.admin-group-session-btn.delete {
    background-color: rgba(239, 68, 68, 0.2);
    color: rgba(239, 68, 68, 1);
}

.admin-group-session-btn.delete:hover {
    background-color: rgba(239, 68, 68, 0.3);
}

.admin-group-session-details {
    margin-bottom: 15px;
}

.admin-group-session-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.admin-group-session-info-label {
    color: rgba(180, 180, 180, 1);
    font-size: 14px;
    font-weight: 500;
}

.admin-group-session-info-value {
    color: rgba(200, 200, 200, 1);
    font-size: 14px;
}

.admin-group-session-info-value.booking-closed {
    color: rgba(239, 68, 68, 1);
    font-weight: 600;
}

.admin-group-session-info-value.booking-open {
    color: rgba(34, 197, 94, 1);
    font-weight: 600;
}

.admin-group-session-bookings {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
}

.admin-group-session-bookings-header {
    color: rgba(224, 195, 0, 1);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.admin-group-session-bookings-list {
    max-height: 150px;
    overflow-y: auto;
}

.admin-group-session-booking {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-group-session-booking:last-child {
    border-bottom: none;
}

.admin-group-session-booking-info {
    flex: 1;
}

.admin-group-session-booking-name {
    color: rgba(200, 200, 200, 1);
    font-size: 14px;
    font-weight: 500;
}

.admin-group-session-booking-contact {
    color: rgba(180, 180, 180, 1);
    font-size: 12px;
}

.no-group-sessions-admin {
    text-align: center;
    color: rgba(180, 180, 180, 1);
    font-size: 16px;
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(224, 195, 0, 0.3);
}

/* Form row styling for group session modal */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Holiday camp slot picker: checkbox and label on same line, label wraps */
.holiday-camp-slot-picker {
    max-width: 100%;
    overflow: hidden;
}
.holiday-camp-slot-picker .slot-picker-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    max-width: 100%;
    min-width: 0;
}
.holiday-camp-slot-picker .slot-picker-row input[type="checkbox"] {
    flex-shrink: 0;
    width: 13px !important;
    min-width: 13px !important;
    max-width: 13px !important;
    height: 13px !important;
    min-height: 13px !important;
    max-height: 13px !important;
    box-sizing: border-box;
}
.holiday-camp-slot-picker .slot-picker-row label {
    margin: 0;
    cursor: pointer;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Booking type indicators in day bookings modal */
.booking-type {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 10px;
}

.booking-type.group-session {
    background-color: rgba(59, 130, 246, 0.2);
    color: rgba(59, 130, 246, 1);
}

.booking-type.individual {
    background-color: rgba(34, 197, 94, 0.2);
    color: rgba(34, 197, 94, 1);
}

/* Enhanced booking item styling for mixed content */
.booking-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(224, 195, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.booking-item:hover {
    border-color: rgba(224, 195, 0, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
}

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

.booking-header h3 {
    color: rgba(224, 195, 0, 1);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.booking-details p {
    margin: 5px 0;
    color: rgba(200, 200, 200, 1);
    font-size: 14px;
}

.booking-details strong {
    color: rgba(224, 195, 0, 1);
    font-weight: 600;
}

.booking-actions {
    margin-top: 10px;
    text-align: right;
}

.booking-actions button {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-actions .btn-primary {
    background-color: rgba(59, 130, 246, 1);
    color: white;
}

.booking-actions .btn-primary:hover {
    background-color: rgba(59, 130, 246, 0.8);
}

.booking-actions .btn-danger {
    background-color: rgba(239, 68, 68, 1);
    color: white;
}

.booking-actions .btn-danger:hover {
    background-color: rgba(239, 68, 68, 0.8);
}

/* Recent Updates Tab Styling */
.recent-updates-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(224, 195, 0, 0.3);
}

.recent-updates-header h2 {
    color: rgba(224, 195, 0, 1);
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.recent-updates-header p {
    color: rgba(200, 200, 200, 1);
    font-size: 16px;
    margin: 0;
}

.recent-updates-content {
    padding: 20px 0;
}

.recent-updates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-update-item {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(224, 195, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.recent-update-item:hover {
    border-color: rgba(224, 195, 0, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 195, 0, 0.2);
}

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

.update-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.update-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.update-type-badge.individual {
    background-color: rgba(34, 197, 94, 0.2);
    color: rgba(34, 197, 94, 1);
}

.update-type-badge.group {
    background-color: rgba(59, 130, 246, 0.2);
    color: rgba(59, 130, 246, 1);
}

.update-time {
    color: rgba(180, 180, 180, 1);
    font-size: 14px;
    font-style: italic;
}

.update-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.update-info {
    flex: 1;
}

.update-customer {
    color: rgba(224, 195, 0, 1);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.update-service {
    color: rgba(200, 200, 200, 1);
    font-size: 16px;
    margin-bottom: 8px;
}

.update-datetime {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.update-date {
    color: rgba(224, 195, 0, 1);
    font-weight: 500;
}

.update-time-slot {
    color: rgba(200, 200, 200, 1);
}

.update-contact {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
}

.update-email, .update-phone {
    color: rgba(180, 180, 180, 1);
    font-size: 14px;
}

.update-location {
    color: rgba(200, 200, 200, 1);
    font-size: 14px;
    margin-bottom: 8px;
}

.update-spaces {
    color: rgba(200, 200, 200, 1);
    font-size: 14px;
    margin-bottom: 8px;
}

.update-actions {
    display: flex;
    gap: 10px;
}

.no-recent-updates {
    text-align: center;
    color: rgba(180, 180, 180, 1);
    font-size: 16px;
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(224, 195, 0, 0.3);
}

.no-recent-updates h3 {
    color: rgba(224, 195, 0, 1);
    font-size: 20px;
    margin-bottom: 10px;
}

/* Responsive adjustments for admin group sessions */
@media (max-width: 768px) {
    .group-sessions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .group-sessions-list {
        grid-template-columns: 1fr;
    }
    
    .admin-group-session-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .admin-group-session-actions {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Recent Updates Responsive */
    .update-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .update-datetime, .update-contact {
        flex-direction: column;
        gap: 5px;
    }
    
    .update-actions {
        align-self: flex-start;
    }
}
