/* ============================================
   FORM INPUT IMPROVEMENTS - ENHANCED UX
   ============================================ */

/* Form Group Spacing */
.mb-3 {
    margin-bottom: 1.5rem !important;
}

/* Form Labels - Enhanced */
.form-label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #e0e5f0 !important;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label .text-danger {
    color: #ff0055 !important;
    font-size: 1.1rem;
}

/* Input Fields - Modern Design */
.neon-input,
.form-control.neon-input,
.form-select.neon-input {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 2px solid rgba(0, 255, 255, 0.3) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Input Hover State */
.neon-input:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(0, 255, 255, 0.5) !important;
}

/* Input Focus State - Enhanced */
.neon-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #00ffff !important;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.4),
        0 0 40px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(0, 255, 255, 0.1) !important;
    color: #ffffff !important;
    outline: none;
    transform: translateY(-2px);
}

/* Placeholder Styling */
.neon-input::placeholder {
    color: #8892b0 !important;
    font-weight: 400;
    opacity: 0.7;
}

.neon-input:focus::placeholder {
    color: #a0aac0 !important;
    opacity: 0.9;
}

/* Select Dropdown Arrow */
.form-select.neon-input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2300ffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem !important;
    cursor: pointer;
}

/* Dropdown Options - FIXED VISIBILITY */
.form-select.neon-input option {
    background-color: #1a1a24 !important;
    color: #ffffff !important;
    padding: 12px 16px;
    font-weight: 500;
}

.form-select.neon-input option:hover,
.form-select.neon-input option:focus,
.form-select.neon-input option:checked {
    background-color: #2a2a34 !important;
    background: linear-gradient(90deg, #2a2a34 0%, rgba(0, 255, 255, 0.1) 100%) !important;
    color: #00ffff !important;
}

.form-select.neon-input option:disabled {
    background-color: #0f0f14 !important;
    color: #6b7280 !important;
    cursor: not-allowed;
}

/* Default/Placeholder Option */
.form-select.neon-input option[value=""] {
    color: #8892b0 !important;
    font-style: italic;
}

/* Textarea Specific */
textarea.neon-input {
    min-height: 100px;
    resize: vertical;
}

/* Select Element - Browser Specific Fixes */
select.neon-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Firefox Specific - Dropdown Options */
@-moz-document url-prefix() {
    .form-select.neon-input option {
        background-color: #1a1a24;
        color: #ffffff;
    }
}

/* Chrome/Safari Specific - Dropdown Panel */
.form-select.neon-input::-webkit-scrollbar {
    width: 8px;
}

.form-select.neon-input::-webkit-scrollbar-track {
    background: #0b0b12;
}

.form-select.neon-input::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.3);
    border-radius: 4px;
}

.form-select.neon-input::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 255, 0.5);
}

/* Input Icons (if using Bootstrap Icons) */
.neon-input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.neon-input-group:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15);
}

.neon-addon {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(0, 255, 255, 0.3) !important;
    border-right: none !important;
    color: #00ffff !important;
    font-size: 1.2rem;
    padding: 0 20px;
}

.neon-input-group .neon-input {
    border-left: none !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.neon-input-group .neon-input:focus {
    box-shadow: none !important; /* Remove default to avoid double shadow with group */
    border-color: #00ffff !important;
    border-left: 2px solid #00ffff !important; /* Restore border on focus */
}

.neon-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
}
    position: relative;
}

.input-group-text {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    border-radius: 12px 0 0 12px;
}

/* Small Helper Text */
.form-text,
small.text-muted {
    color: #b0b5c0 !important;
    font-size: 0.85rem;
    margin-top: 6px;
    display: block;
    font-weight: 400;
}

/* Input Validation States */
.neon-input:invalid:not(:placeholder-shown) {
    border-color: #ff0055 !important;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3) !important;
}

.neon-input:valid:not(:placeholder-shown) {
    border-color: #00ff88 !important;
}

/* Disabled State */
.neon-input:disabled {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #6b7280 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Date Input Specific */
input[type="date"].neon-input {
    position: relative;
    cursor: pointer;
}

input[type="date"].neon-input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.5);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

input[type="date"].neon-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Number Input Arrows */
input[type="number"].neon-input::-webkit-inner-spin-button,
input[type="number"].neon-input::-webkit-outer-spin-button {
    opacity: 1;
    filter: invert(1);
}

/* ============================================
   BUTTON IMPROVEMENTS
   ============================================ */

/* Submit Button - Enhanced */
.btn-neon {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid;
    color: inherit;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.btn-neon:active {
    transform: translateY(-1px);
}

.btn-neon-cyan {
    border-color: #00ffff;
    color: #00ffff;
}

.btn-neon-cyan:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 255, 255, 0.5),

/* ============================================
   ROOM SELECTION GRID
   ============================================ */
.room-selection-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.room-selection-card:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.room-selection-card.active {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.room-selection-card.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.05);
}

.room-icon-large {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.room-category-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.room-availability-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
}

/* Neon variations based on category class */
.room-selection-card.btn-neon-green.active {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.room-selection-card.btn-neon-pink.active {
    border-color: #ff00ff;
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

.room-selection-card.btn-neon-yellow.active {
    border-color: #ffff00;
    background: rgba(255, 255, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.2);
}

.availability-high {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

.availability-low {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.availability-none {
    background: rgba(255, 0, 85, 0.2);
    color: #ff0055;
}

        0 0 40px rgba(0, 255, 255, 0.3);
}

/* Button Loading State */
.btn-neon:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   ROOM CARDS IMPROVEMENTS
   ============================================ */

.room-card .card-body {
    padding: 1.5rem;
}

.room-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.room-card .description {
    color: #d0d5e0 !important;
    line-height: 1.6;
}

/* Pricing Section Improvements */
.pricing-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-section small {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-section .text-success {
    color: #00ff88 !important;
    font-weight: 600;
}

/* Facility Items */
.facility-item h5 {
    color: #ffffff !important;
    font-weight: 600;
}

.facility-item p {
    color: #c0c5d0 !important;
}

/* Lead Text */
.lead {
    color: #c0c5d0 !important;
}

/* ============================================
   BOOKING PAGE IMPROVEMENTS
   ============================================ */

.booking-info-text {
    color: #b0b5c0 !important;
}

/* Table in Price Summary */
.table {
    color: #ffffff;
}

.table td {
    border-color: rgba(255, 255, 255, 0.1) !important;
    padding: 0.75rem 0.5rem;
}

/* Success/Info Colors */
.text-success {
    color: #00ff88 !important;
}

.text-info {
    color: #00ccff !important;
}

/* ============================================
   LOCATION PAGE IMPROVEMENTS
   ============================================ */

.location-section {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.location-section:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 255, 255, 0.2);
}

.location-section h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.location-detail {
    color: #d0d5e0 !important;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.location-list li {
    color: #d0d5e0 !important;
    font-size: 0.95rem;
    line-height: 1.8;
    padding: 0.5rem 0;
}

.operating-hours p {
    color: #d0d5e0 !important;
    font-size: 1rem;
    line-height: 1.8;
}

.operating-hours strong {
    color: #ffffff !important;
    font-weight: 600;
}

.btn-neon-green {
    border-color: #00ff88;
    color: #00ff88;
}

.btn-neon-green:hover {
    background: rgba(0, 255, 136, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 255, 136, 0.5),
        0 0 40px rgba(0, 255, 136, 0.3);
    color: #00ff88;
}


/* ============================================
   CONFIRMATION PAGE IMPROVEMENTS
   ============================================ */

.confirmation-label {
    color: #a0a5b0 !important;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirmation-value {
    color: #ffffff !important;
    font-weight: 600;
}

/* ============================================
   TEXT READABILITY IMPROVEMENTS
   ============================================ */

/* Improved text colors for better readability */
.text-muted {
    color: #c0c5d0 !important;
}

.small.text-muted {
    color: #b0b5c0 !important;
}

/* Price Display - Better Contrast */
.price-hourly, .price-package {
    font-weight: 600;
    color: #ffffff !important;
}

.pricing-section .text-muted {
    color: #a0a5b0 !important;
    font-weight: 500;
}

/* Form Labels */
.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #e0e5f0 !important;
}

/* Facilities List */
.facilities ul {
    margin-bottom: 0;
}

.facilities li {
    padding: 3px 0;
    color: #d0d5e0 !important;
}

.facilities .text-muted {
    color: #b0b5c0 !important;
}

/* ============================================
   SCHEDULE GRID WITH TIMETABLE
   ============================================ */

.schedule-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.schedule-legend {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 2px solid;
}

.legend-box.available {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.legend-box.booked {
    background: rgba(255, 0, 85, 0.1);
    border-color: #ff0055;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    padding: 15px 10px;
    text-align: center;
    border-radius: 10px;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
}

.time-slot .time {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
}

.time-slot .status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slot-available {
    background: rgba(0, 255, 136, 0.15);
    border-color: #00ff88;
    color: #00ff88;
}

.slot-available:hover {
    background: rgba(0, 255, 136, 0.25);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
}

.slot-booked {
    background: rgba(255, 0, 85, 0.15);
    border-color: #ff0055;
    color: #ff0055;
    cursor: not-allowed;
    opacity: 0.7;
}

.slot-booked:hover {
    transform: none;
}

/* Timetable View */
.timetable-view {
    margin-top: 20px;
}

.timetable-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 10px;
    margin-bottom: 8px;
    align-items: center;
}

.timetable-hour {
    font-weight: 600;
    color: #00ffff;
    text-align: right;
    padding-right: 10px;
    border-right: 2px solid rgba(0, 255, 255, 0.3);
}

.timetable-status {
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.timetable-status.available {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border-left: 3px solid #00ff88;
}

.timetable-status.booked {
    background: rgba(255, 0, 85, 0.15);
    color: #ff0055;
    border-left: 3px solid #ff0055;
}

/* Price Summary Improvements */
#priceDetail .table td {
    color: #e0e5f0 !important;
}

#priceDetail .text-muted {
    color: #b0b5c0 !important;
}

/* Alert Improvements */
.alert-info {
    background: rgba(0, 204, 255, 0.1) !important;
    border: 1px solid rgba(0, 204, 255, 0.3) !important;
    color: #00ccff !important;
}

/* ============================================
   PRICE SUMMARY - CLEAN LAYOUT
   ============================================ */

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-of-type {
    border-bottom: none;
}

.price-label {
    color: #b0b5c0 !important;
    font-size: 0.95rem;
    font-weight: 500;
}

.price-value {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
}

.price-row.price-total {
    padding-top: 15px;
    margin-top: 5px;
}

.price-total .price-label {
    font-size: 1.1rem;
    font-weight: 700;
}

.price-total .price-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Voucher Row - Success Color */
.price-row .text-success {
    color: #00ff88 !important;
    font-weight: 600;
}


/* ============================================
   RESPONSIVE IMPROVEMENTS - MOBILE FIRST
   ============================================ */

/* Mobile Devices (< 576px) */
@media (max-width: 576px) {
    /* Schedule Grid */
    .schedule-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .time-slot {
        padding: 12px 8px;
    }
    
    .time-slot .time {
        font-size: 14px;
    }
    
    /* Schedule Legend */
    .schedule-legend {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
    }
    
    .legend-box {
        width: 16px;
        height: 16px;
    }
    
    /* Timetable */
    .timetable-row {
        grid-template-columns: 60px 1fr;
        gap: 8px;
    }
    
    .timetable-hour {
        font-size: 0.9rem;
    }
    
    .timetable-status {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    /* Form Inputs - Touch Friendly */
    .neon-input,
    .form-control.neon-input,
    .form-select.neon-input {
        padding: 16px 18px !important;
        font-size: 16px !important; /* Prevents zoom on iOS */
        border-radius: 10px !important;
    }
    
    /* Form Labels */
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    /* Buttons - Larger Touch Targets */
    .btn-neon {
        padding: 16px 28px;
        font-size: 1rem;
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Price Summary - Stack Vertically */
    .table td {
        font-size: 0.9rem;
        padding: 0.5rem 0.25rem;
    }
    
    /* Room Cards */
    .room-card .card-body {
        padding: 1.25rem;
    }
    
    .room-icon {
        font-size: 40px !important;
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: 12px;
    }
    
    .price-hourly, .price-package {
        font-size: 0.9rem;
    }
    
    /* Neon Cards */
    .neon-card {
        border-radius: 15px;
    }
    
    /* Schedule Container */
    .schedule-container {
        padding: 12px;
    }
    
    .schedule-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Tablet Devices (577px - 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    /* Schedule Grid */
    .schedule-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 10px;
    }
    
    /* Form Inputs */
    .neon-input {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn-neon {
        padding: 14px 30px;
    }
    
    /* Room Cards - 2 Columns */
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Desktop Enhancements (> 992px) */
@media (min-width: 993px) {
    /* Enhanced Hover Effects */
    .neon-input:hover {
        transform: translateY(-1px);
    }
    
    .time-slot:hover {
        transform: translateY(-3px) scale(1.02);
    }
    
    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .content-wrapper {
        padding-top: 60px;
    }
    
    .neon-input {
        padding: 12px 16px !important;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .neon-input {
        border-width: 1.5px !important;
    }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
    /* Already dark, but can add overrides if needed */
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   BOOKING FORM OVERHAUL - PRO STYLE
   ============================================ */

/* Radio Card Grid for Room Selection */
.room-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.room-radio-input {
    display: none;
}

.room-radio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.room-radio-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.room-radio-input:checked + .room-radio-card {
    background: rgba(0, 255, 255, 0.1);
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.room-radio-card .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: #00ffff;
    transition: all 0.3s ease;
}

.room-radio-input:checked + .room-radio-card .icon-wrapper {
    background: #00ffff;
    color: #000;
    box-shadow: 0 0 15px #00ffff;
}

.room-radio-card .room-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-radio-card .room-price {
    font-size: 0.8rem;
    color: #b0b5c0;
}

.room-radio-input:checked + .room-radio-card .room-name {
    color: #00ffff;
}

/* Duration Pill Buttons */
.duration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.duration-radio-input {
    display: none;
}

.duration-pill {
    flex: 1;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #d0d5e0;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.duration-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.duration-radio-input:checked + .duration-pill {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 204, 255, 0.2));
    border-color: #00ffff;
    color: #00ffff;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.duration-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff00ff;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 0 5px #ff00ff;
}

/* Time Pills (Reuse Duration Styles) */
.time-radio-input {
    display: none;
}

.time-radio-input:checked + .duration-pill {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 204, 255, 0.2));
    border-color: #00ffff;
    color: #00ffff;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* Modern Input Fields (No Icons) */
.modern-form-group {
    position: relative;
    margin-bottom: 0.5rem;
}

.modern-input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 0 !important;
    padding: 10px 0 !important; /* No left padding */
    color: #fff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: #00ffff !important;
    background: transparent !important;
    box-shadow: 0 1px 0 #00ffff !important;
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.2) !important;
}

/* Custom Scrollbar for Time Grid */
.time-grid-container::-webkit-scrollbar {
    width: 6px;
}
.time-grid-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}
.time-grid-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}
