/* Reset some defaults */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #f0f4f8, #e0eafc);
    padding: 30px;
    color: #333;
}

.booking-container {
    background: white;
    max-width: 600px;
    margin: auto;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.booking-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 28px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
}

label {
    display: block;
    margin-top: 20px;
    font-weight: 600;
    color: #444;
}

input[type="text"],
input[type="date"],
input[type="time"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    margin-top: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #4CAF50;
    outline: none;
    background-color: #fdfdfd;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

button {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background-color: #4CAF50;
    color: white;
    border: none;
    font-size: 17px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

button:hover {
    background-color: #43a047;
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    .booking-container {
        padding: 30px 20px;
    }

    h2 {
        font-size: 24px;
    }

    input, select, textarea {
        font-size: 14px;
    }

    button {
        font-size: 16px;
        padding: 12px;
    }
}
