  .rating-selector {
    position: relative;
    width: 250px;
    font-family: Arial, sans-serif;
  }

  /* Стили для выбранного элемента */
  .rating-selector-selected {
    background-color: #211a43;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
  }

  /* Стиль стрелки */
  .rating-selector-selected::after {
    content: "";
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  /* Вращение стрелки при открытии */
  .select-arrow-active::after {
    transform: rotate(-135deg);
  }

  /* Контейнер для опций */
  .rating-selector-select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    max-height: 200px; /* ограничение по высоте */
    overflow-y: auto; /* прокрутка при необходимости */
    z-index: 99; /* чтобы было поверх других элементов */
    display: none; /* по умолчанию скрыт */
  }

  /* Стиль для каждого варианта */
  .rating-selector-select-items div {
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  /* Ховер эффект для вариантов */
  .rating-selector-select-items div:hover {
    background-color: #f1f1f1;
  }
