.star-rating {
  display: flex;
  gap: 0.5em;
  font-size: 2em;
  margin: 0.5em 0;
  color: #ccc;
  justify-content: center;
}

.star-rating span {
  cursor: pointer;
  transition: color 0.3s;
}

.star-rating span.selected {
  color: #ffc107;
}

textarea#feedback-comment {
  width: 100%;
  height: 100px;
  resize: vertical;
  padding: 0.5em;
  font-size: 1em;
  margin-bottom: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
}

#feedback-title{
    margin-top: 0;
    margin-bottom: 0;
}

#feedback-thanks {
  text-align: center;
  color: #004851;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 0;
}


#feedback-modal button {
  background-color: #004851;
  color: white;
  padding: 0.6em 1.5em;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#feedback-modal button:hover {
  background-color: #00bcd4;
}
#feedback-modal textarea {
  width: 100%;
  height: 100px;
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  resize: vertical;
  font-size: 1em;
  font-family: 'Segoe UI', sans-serif;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 20px;
}

#feedback-modal textarea:focus {
  border-color: #00bcd4;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 188, 212, 0.5);
}

.feedback-submit-wrapper {
  text-align: center;
}

.feedback-submit-wrapper button {
  background-color: #00bcd4;
  color: white;
  padding: 0.7em 1.5em;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.feedback-submit-wrapper button:hover {
  background-color: #0097a7;
}
