/* General Container Styling */
.star-rating-form {
  font-family: 'Arial', sans-serif;
  max-width: 300px;
  margin: 20px auto;
  text-align: center;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.star-rating-form h2 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #333;
}

/* Star Rating Styling */
#starRating {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.star {
  font-size: 30px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.star:hover, .star.active {
  color: gold;
}

#thankYouMessage {
  font-size: 14px;
  color: #28a745;
  margin-top: 10px;
}

#thankYouMessage .thank-you-ms {
  font-size: 1.1em;
}

/* Rating Info Styling */
#ratingInfo {
  margin-top: 10px;
}

#averageRating {
  font-size: 2em;
  color: #ff9800;
}

#totalRatings {
  font-size: 0.9em;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .star-rating-form {
    max-width: 100%;
  }

  .star {
    font-size: 24px;
  }

  #averageRating {
    font-size: 1.5em;
  }
}
