.hostel-zhr-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

#hostel-booking-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Form inputs */
.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Hostel cards */
.hostel-card {
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.hostel-card:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.hostel-card.selected {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #e7f3ff 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.hostel-card .hostel-name {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.hostel-card .hostel-location {
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Trip type cards */
.trip-type-card {
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
}

.trip-type-card:hover {
    border-color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.trip-type-card.selected {
    border-color: #0d6efd;
    background: linear-gradient(135deg, #e7f3ff 0%, #ffffff 100%);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.trip-type-card i {
    color: #0d6efd;
}

/* Range slider */
.form-range {
    height: 8px;
}

.form-range::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
}

.form-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
}

/* Radio buttons */
.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Submit button */
#submit-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-floating,
.mb-3 {
    animation: fadeIn 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
    #hostel-booking-form {
        padding: 30px 20px;
    }

    .hostel-zhr-wrapper {
        padding: 20px 15px;
    }
}