.booking-wrapper {
    max-width: 520px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

.booking-step {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to {opacity: 1; transform: translateY(0);}
}

.hidden {
    display: none;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 24px;
}

/* Step 1 - Dates */
.date-scroll {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0;
    margin-bottom: 20px;
}

.date-card {
    min-width: 90px;
    padding: 12px;
    background: #f2f2f2;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    border: 2px solid transparent;
    transition: all 0.2s ease-in-out;
}

.date-card:hover {
    background-color: #e0e0e0;
}

.date-card.active {
    border-color: #2196F3;
    background: #E3F2FD;
    font-weight: bold;
}

.time-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.time-slot {
    background: #e0e0e0;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
    font-weight: 500;
}

.time-slot.active {
    background: #2196F3;
    color: white;
}

/* Step 2 - Issues */
.issue-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 10px;
    justify-content: center;
}

.issue-options label {
    background: #f7f7f7;
    padding: 10px 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.issue-options label:hover {
    background: #eee;
}

.issue-options input[type="radio"] {
    margin-right: 8px;
}

/* Step 3 - Extended Form */
form input,
form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
    box-sizing: border-box;
}

form .row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

form .row .col {
    flex: 1;
    min-width: 140px;
}

form button[type="submit"],
.next-step,
.back-step {
    display: block;
    width: 100%;
    background: #2196F3;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

form button:hover,
.next-step:hover:not(:disabled),
.back-step:hover {
    background: #1976D2;
}

.next-step:disabled {
    background: #90caf9;
    cursor: not-allowed;
}

.back-step {
    background: #b0bec5;
    margin-bottom: 10px;
}

#booking-response {
    margin-top: 20px;
    text-align: center;
}

.success {
    color: green;
    font-weight: bold;
}

.error {
    color: red;
    font-weight: bold;
}

/* Success Message Custom */
.success-message {
    background: #e8f5e9;
    border: 1px solid #66bb6a;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    color: #2e7d32;
    font-size: 16px;
    margin-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .booking-wrapper {
        padding: 20px;
    }

    .time-options,
    .issue-options {
        flex-direction: column;
        align-items: center;
    }

    .row {
        flex-direction: column;
    }
}

#new-booking-btn {
    margin-top: 15px;
    background: #1976D2;
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
}
#new-booking-btn:hover {
    background-color: #1565c0;
}
