.reservation-div{
    padding: 150px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}
/* Style reservation content */
.reservation-div h1{
    font: 2rem sans-serif;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    font-weight: 800;
    color: red;
}
.reservation-div h2{
    font: 1rem sans-serif;
}
.reservation-div .reservation p {
    font: 1.2rem sans-serif;
    padding: 10px 0;
}
.reservation-div .reservation input, .reservation-div .reservation select{
    padding: 10px;
    margin: 5px 0;
}
/* Style time slots */
.availableslot a {
    text-decoration: none !important;
    font-family: sans-serif !important;
    font-weight: 600 !important;
    color: black !important;
}
/* Style reservation button */
.pbSubmit{
    background-color: #008CBA;
    color: white;
    border: none;
    cursor: pointer;
}
.pbSubmit:hover{
    background-color: #1693bc;
}
