/* The main container for our custom dropdown */
.custom-dropdown-container {
    position: relative;
    min-width: 150px;
  }
  
  /* The box that shows the selected value (our fake select box) */
  .custom-dropdown-trigger {
    padding: 11px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative; /* For the arrow */
    user-select: none; /* Prevents text selection on click */
    text-align: left;
  }
  
  /* The custom arrow */
  .custom-dropdown-trigger::after {
    content: '˅';
    font-size: 0.9rem;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
  }
  
  /* Rotate arrow when open */
  .custom-dropdown-container.is-open .custom-dropdown-trigger::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  /* The list of options */
  .custom-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 5px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 10;
    display: none; /* Hidden by default */
    text-align: left;
  }
  
  .custom-dropdown-container.is-open .custom-dropdown-options {
    display: block; /* Show when open */
  }
  
  /* Individual option item */
  .custom-dropdown-option {
    padding: 5px 15px;
    cursor: pointer;
  }
  
  .custom-dropdown-option:hover, .custom-dropdown-option.is-selected {
    background-color: #e6191d;
    color: white;
  }


  