
.res {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 400px;
    margin: 20px auto; 
    position: relative;
    box-sizing: border-box;
}

.header {
    text-align: center;
    color: #333;
}
.form {
    display: flex;
    flex-direction: column;
}
.label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}
.input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.table-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 30px 15px; /* 30px for row spacing, 15px for column spacing */
    margin-bottom: 15px;
}
.table-box {
    width: 80px; /* Rectangular box width */
    height: 50px; /* Rectangular box height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.table-box.selected {
    background-color: #B38E6A;
    color: white;
}
.table-box:hover {
    background-color: #d6d6d6;
}
.submit-button {
    background-color: #B38E6A;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 15px; /* Increased padding for better visibility */
    font-size: 16px; /* Ensure text size matches the button size */
}
.submit-button:hover {
    background-color: #9C7C5A;
}
footer{
    display: flex;
    padding: 100px 200px;
    box-sizing: border-box;
    width: 100%;
  }
  
  footer .info{
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
  }
  
  footer .info a{
    color: black;
    text-decoration: none;
  }
  
  .copyright{
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #B38E6A;
    color: white;
  }
  
  
  #review{
      display: flex;
  }
  
  .review-content{
      padding: 140px 300px 140px 100px;
      box-sizing: border-box;
      background-color: #E5DCD2;
  }
  
  .review-content h1{
      padding-left: 150px;
      margin-bottom: 50px;
      font-size: 60px;
      box-sizing: border-box;
      color: #534931;
  }
  
  .review-content p{
      font-size: 20px;
  }
  
  #recent-post,#contact{
      width: 100%;
      padding: 100px 200px;
      box-sizing: border-box;
      text-align: center;
  }
  
  .recent-box{
      width: 100%;
      display: flex;
  }
  
  .recent-box1{
      width: 35%;
  }
  .recent-box2{
      width: 50%;
      margin-left: -50px;
      padding: 20px 100px 20px 0;
  }
  
  .recent-box2 img{
      margin-right: 30px;
  }
  
  .recent-info{
      padding-top: 60px;
  }
  
  .recent-detail{
      display: flex;
      padding: 35px 0;
  }
  
  #contact button{
      background-color: #B38E6A;
      color: white;
      border: none;
      padding: 15px 20px;
  }
  
  #contact p{
      padding:20px 24%;
      box-sizing: border-box;
      font-size: 20px;
  } 
  