/* Reservation Main Page */
.container{
    padding: 2%;
}

.content-center {
    text-align: center;
    margin: 3px;
}

.section {
    margin-top: 20px;
    margin-bottom:5px; /* Adjust the margin as needed to control the spacing */
}

/* Basic styling for the form */
form {
    width: 90%;
    font-family: Arial, sans-serif;
    padding: 20px;
    border: 1px solid #ccc;
    background: #fbffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

label{
    display: block;
    margin: 10px 0;
    text-align: left;
}

input {
    width: 100%;
    padding: 6px 15px;
    box-sizing: border-box;
    border: 2px solid grey;
    border-radius: 10px;
}

/* Button in confirmReservation */
.button {
    display: inline-block;
    background: #03254c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 6px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-decoration: none;
}

.button:hover {
    background: #0056b3;
    color: #fff;
}

p{
    text-align:center;
}        