.booking {
    padding: 50px 20px;
    background-color: #1b1b1b;
    text-align: center;
}

.booking h2 {
    font-size: 3em;
    color: #ffd700; /* Gold color for headings */
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #333;
    color: #f5f5f5;
    font-size: 1em;
}

button[type="submit"] {
    background-color: #ff6f61;
    color: #f5f5f5;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #e0554a;
}

#response-message {
    font-size: 1.2em;
    margin-top: 20px;
    color: #ffd700; /* Gold color for response message */
}
