/* Alternative Dates Styling - Compact & Elegant */
.alternative-dates-container {
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #22a109 #f1f1f1;
}

/* Custom scrollbar for webkit browsers */
.alternative-dates-container::-webkit-scrollbar {
    width: 6px;
}

.alternative-dates-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.alternative-dates-container::-webkit-scrollbar-thumb {
    background: #22a109;
    border-radius: 3px;
}

.alternative-dates-container::-webkit-scrollbar-thumb:hover {
    background: #1b8107;
}

.alternative-date-option {
    margin-bottom: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    transition: all 0.15s ease;
    background: #fff;
    overflow: hidden;
}

.alternative-date-option:hover {
    border-color: #22a109;
    box-shadow: 0 1px 3px rgba(34, 161, 9, 0.1);
}

.alternative-date-option label {
    margin: 0;
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.alternative-date-option label:hover {
    background-color: #f8fff9 !important;
}

/* Custom Radio Button Styling */
.alternative-date-radio {
    margin: 0;
    width: 16px;
    height: 16px;
    accent-color: #22a109;
    cursor: pointer;
}

.alternative-date-radio:checked + .flex-grow-1 .date-range {
    color: #22a109;
    font-weight: 500;
}

.price-info {
    font-size: 0.85rem;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-info .fw-bold {
    font-size: 0.9rem;
    color: #22a109;
    font-weight: 600;
}

.date-range {
    font-size: 0.85rem;
    line-height: 1.3;
    color: #374151;
    font-weight: 400;
}

/* Current session highlighting - Better UX */
.current-session {
    border-color: #22a109 !important;
    background-color: #f0fdf4 !important;
    box-shadow: 0 2px 4px rgba(34, 161, 9, 0.2) !important;
    position: relative;
}

.current-session::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #22a109;
    border-radius: 0 2px 2px 0;
}

.current-session label {
    background-color: #f0fdf4 !important;
}

.current-session .date-range {
    color: #22a109 !important;
    font-weight: 600;
}

.current-session .price-info .fw-bold {
    color: #22a109 !important;
    font-weight: 700;
}

.current-session .text-success.fw-bold {
    background-color: #22a109;
    color: white !important;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Remove the old checked styling - current-session class handles it */

/* Discount badge styling */
.badge.bg-success {
    background-color: #22a109 !important;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Current session indicator */
.text-success.fw-bold {
    font-size: 0.75rem;
    color: #22a109 !important;
    font-weight: 600;
}

/* Price strikethrough styling */
.text-decoration-line-through {
    color: #9ca3af !important;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .alternative-dates-container {
        max-height: 300px;
    }
    
    .alternative-date-option label {
        padding: 8px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .price-info {
        margin-left: 0;
        align-self: flex-end;
        flex-wrap: wrap;
    }
    
    .date-range {
        font-size: 0.8rem;
    }
    
    .price-info {
        font-size: 0.8rem;
    }
    
    .alternative-date-radio {
        align-self: flex-start;
        margin-top: 2px;
    }
}

/* Compact spacing */
.alternative-date-option:last-child {
    margin-bottom: 0;
}

/* Focus states for accessibility */
.alternative-date-radio:focus {
    outline: 2px solid #22a109;
    outline-offset: 2px;
}

/* Smooth transitions */
.alternative-date-option * {
    transition: all 0.15s ease;
}
