body{
  display: flex;
  flex-direction: column;
  margin: 0 0 0 0;
  width: 100%;
  height: 100%;
  background-color: #bbcebf;
  object-fit: contain;

}

div.cardapio{
  width: 65%;
  height: 80%;
  margin: auto;
  margin-top: 4%;
  background: rgba(255, 245, 245, 0.53);
  border-radius: 26px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  -webkit-backdrop-filter: blur(7.9px);
}

div.cardapio h1{
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 28px;
  text-align: center;
  padding-top: 3px;
}

table{
  width: 90%;
  height: auto;
  margin: 3% auto;
  padding: 12px;
  background: rgba(68, 255, 0, 0.02);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.9px);
  -webkit-backdrop-filter: blur(7.9px);
  border-radius: 12px;
}
tr{
  font-size: 20px;
  border: 1px solid #dddddd;
}
td{
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  text-align: center;
}
td.dia{
  width: 16%;
  text-align: center;
}

td.refeicao{
  width: 65%;
}

td.rating {
  width: 5%;
}

.alert {
  padding: 10px;
  border: 1px solid #4caf4f69;
  border-radius: 10px;
  color: #4CAF50;
  background-color: #E9F9E9;
  text-align: center;
}

/* avaliação */
.star-rating {
  direction: rtl;
  display: inline-flex;
  justify-content: center; 
  overflow-x: auto; 
}

.star-rating label {
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating input[type="radio"]:checked ~ label {
  color: #ddd;
}

.star-rating input[type="radio"]:checked + label,
.star-rating input[type="radio"]:checked + label ~ label {
  color: #f5b301; 
}

.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #f5b301; 
}

@media screen and (max-width: 860px) and (min-height: 960px){
  body{
    height: 100vh;
  }
}

@media screen and (max-width: 800px){
  body{
  }
  div.cardapio{
    width: 70%;
  }
  table{
    width: 90%;
    border-radius: 10px;
  }
  tr{
    font-size: 20px;
    border: .7px solid #dddddd;
  }
  td{
    padding: 7px;
    border: .7px solid #dddddd;
  }
}

@media screen and (max-width: 500px){
    div.cardapio{
    width: 95%;
  }
  table{
    width: 90%;
  }
  tr{
    font-size: 14px;
  }
  .star-rating {
    justify-content: flex-start; 
    padding-bottom: 0; 
    overflow-x: visible; 
}
.star-rating label {
  font-size: 1rem;
}

}