.rating-select {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    max-width: 400px;
  }
  
  /* Label */
  .rating-label {
    font-weight: 500;
    color: #374151; /* gray-700 */
    margin-bottom: 0.25rem;
    font-size: 1rem;
  }
  
  /* Select box */
  .rating-select select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    font-size: 1rem;
    color: #111827; /* gray-900 */
    background-color: #fff;
    appearance: none; /* remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='gray'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  
  /* Focus state */
  .rating-select select:focus {
    outline: none;
    border-color: #1d4ed8; /* blue-700 */
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3); /* blue-500 with opacity */
  }