/* BSS Booking Wizard Styles */
#bss-booking-wizard {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.bss-step {
    display: none;
}

.bss-step.current-step {
    display: block;
    animation: fadeIn 0.5s ease;
}

.bss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.bss-card {
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bss-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.1);
}

.bss-card.selected {
    border-color: #007bff;
    background-color: #f0f7ff;
}

.bss-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
}

.bss-next, .bss-submit {
    background: #007bff;
    color: white;
}

.bss-prev {
    background: #e2e8f0;
    color: #333;
    margin-right: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
