
#booking-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#booking-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #333;
}

#appointment-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #555;
}

#appointment-form input,
#appointment-form select {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
}

#appointment-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#appointment-form button:hover {
    background-color: #0056b3;
}
