/* Contenedor del menú */
.custom-select {
    position: relative;
    width: 200px;
  }
  
  /* Botón principal */
  .select-button {
    width: 100%;
    padding: 10px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
  }
  
  /* Lista de opciones (oculta por defecto) */
  .select-options {
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    margin: 5px 0 0 0;
    padding: 0;
    list-style: none;
    z-index: 10;
  }
  
  /* Muestra las opciones al pasar el cursor (o mediante JS agregando una clase) */
  .custom-select:hover .select-options {
    display: block;
  }
  
  /* Estilo de cada opción */
  .select-options li {
    padding: 10px;
    cursor: pointer;
  }
  
  .select-options li:hover {
    background: #007bff;
    color: white;
  }