html{
    font-size: 13px;
}
*{
    box-sizing:border-box;
}
body{
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Outfit", serif;
    overflow: hidden;
}
main{
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}
h3{
    text-align:center;
    font-size: 24px;
    font-weight:500;
    color: white;
}
.reservation{
    position: absolute;
    top:50%;
    text-align:left !important;
    transform: translateY(-50%);
    padding: 36px;
    width: 100%;
}
.reservation label{
    font-size: 10px;
}
  
  label span {
    color: red;
  }
  
  /* Simple styling for the modal (popup) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 400px; /* Limit the max width for smaller screens */
    text-align: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Close (X) button in the top-right corner */
  #closeModalButton {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
  }
  
  #closeModalButton:hover {
    color: red;
  }
  
  /* OK button styling */
  #okButton {
    margin-top: 20px;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #007BFF;
    border: none;
    color: #fff;
    font-size: 16px;
  }
  
  #okButton:hover {
    background-color: #0056b3;
  }
  
input,select{
    font-size: 12px;
    width: 100%;
    padding: 5px 5px;
    border: 3px solid #dcdcdc;
    margin-bottom: 5px;
    margin-top: 1.5px;
    border-radius: 5px;
    font-weight: 500;
}
textarea{
    font-size: 15px;
    width: 100%;
    padding: 7px 5px;
    border: 3px solid #dcdcdc;
    margin-bottom: 5px;
    margin-top: 1.5px;
    border-radius: 5px;
    font-weight: 500;
}
#submitButton{
    border: 8px solid #aaaaaa;
    border-radius: 270px;
    font-weight:400;
    background: transparent;
    padding: 5px 5px;
    color: #fff;
    font-size: 14px;
    margin-top: 9px;
}