.rating-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  max-width: 400px;
  margin: 30px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  background: #fff;
  font-family: sans-serif;
}
h3{
colour:#0073aa;
}
.emoji-rating span {
  font-size: 30px;
  margin: 0 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

.emoji-rating span:hover {
  transform: scale(1.2);
}

.message-box textarea {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
}

.message-box button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.message-box button:hover {
  background-color: #005f8a;
}

.star-rating .stars {
  display: flex;
  justify-content: center;
  font-size: 28px;
}

.star-rating .star {
  color: #ccc;
  cursor: pointer;
  margin: 0 5px;
  transition: transform 0.2s;
}

.star-rating .star:hover {
  transform: scale(1.2);
}

.star-rating .star.selected {
  color: gold;
}