.star-rating {
  font-size: 70px;
  cursor: pointer;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.star {
  color: white;
  transition: color 0.2s;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.star.active {
  color: #ffcc00;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

body, html {
  margin: 0;
  padding: 0;
}

.reviewtitle {
  display: flex;
  justify-content: center;
  font-size: 35px;
  font-family: 'Tahoma';
  font-style: italic;
}

.reviewportal {
  font: Tahoma;
  display: flex;
  justify-content: center;
  background-color: #CEB888;
  border-radius: 20px;
  padding: 10px;
  padding-bottom: 20px;
  margin: 20px auto;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
    font-family: 'Tahoma';
    font-size: 16px;
    color: black;
}

input[type="text"],
textarea, 
select {
    width: 100%;
    font-family: 'Tahoma';
    font-size: 16px;
    padding: 3px;
    border: 2px solid #ccc;
    border-radius: 5px;
    resize: none;
}

input[type="submit"] {
    background-color: black;
    color: white;
    width: 100%;
    font-family: 'Tahoma';
    font-size: 16px;
    padding: 3px;
    border: 2px solid black;
    border-radius: 5px;
    resize: none;
    margin-bottom: 15px;
}
.thank-you-message {
  color: green;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
