/**
 * CF7 Star Rating Styles
 */

.cf7-star-rating-field {
  margin: 10px 0;
}

.cf7-star-rating-wrapper {
  display: inline-block;
  direction: rtl; /* Right to left for easier rating selection */
}

.cf7-star {
  display: inline-block;
  cursor: pointer;
  padding: 0 2px;
}

.cf7-star .dashicons {
  font-size: 24px;
  width: 24px;
  height: 24px;
  transition: all 0.2s ease;
}

.cf7-star .dashicons-star-filled {
  color: #ffd700; /* Gold color for filled stars */
}

.cf7-star .dashicons-star-empty {
  color: #ccc; /* Light gray for empty stars */
}

.cf7-star:hover .dashicons,
.cf7-star:hover ~ .cf7-star .dashicons {
  color: #ffd700; /* Gold color on hover */
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
  .cf7-star .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
  }
}

