* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Booking Section */
.booking {
    background: #f9f9f9;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
}

/* Title */
.booking h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #01781f;
    text-align: center;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    text-align: left;
    margin-bottom: 5px;
}

#payment-method {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    width: 100%;
    max-width: 300px;
    transition: border-color 0.3s, background-color 0.3s;
}

#payment-method:focus {
    border-color: #4caf50;
    background-color: #e8f5e9;
}

label[for="payment-method"] {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: inline-block;
}

option {
    padding: 10px;
    background-color: #fff;
}

option:hover {
    background-color: #f0f0f0;
}


/* Input & Select Styling */
input, select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    margin-bottom: 15px;
}

input:focus, select:focus {
    border-color: #038e1a;
    outline: none;
    box-shadow: 0px 0px 5px rgba(6, 165, 72, 0.5);
}

/* Total Cost */
h3 {
    font-size: 18px;
    margin-top: 10px;
    color: #007802;
    text-align: center;
    margin-top: 20px;
}

/* Button */
button {
    background: #007802;
    color: white;
    padding: 10px;
    font-size: 18px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #025c1d;
}

/* Responsive Design */
@media (max-width: 600px) {
    .booking {
        max-width: 90%;
        padding: 20px;
    }

    button {
        font-size: 16px;
    }
}
