    /* Estilos personalizados para el buscador, select de categorías y sucursales */
#inputBuscar,
#category_id {
  background-color: transparent !important;
  border: 1px solid white !important;
  color: white !important;
}
#branch_id {
  background-color: transparent !important;
  border: 1px solid white !important;
  color: white !important;
    background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/icons/geo-alt-fill.svg');
    background-repeat: no-repeat;
    background-position: 8px center;
    background-size: 18px;
    padding-left: 30px;
  }
#inputBuscar::placeholder {
  color: rgba(255, 255, 255, 0.7); /* color placeholder blanco tenue */
}

#category_id option,
#branch_id option {
  color: black; /* para que las opciones del select sean visibles en el desplegable */
}

.form-select {
  background-image: none !important; /* Quitar flecha de Bootstrap para mejor apariencia */
}

    .navbar-custom {
      background-color: #212529;
    }
    .navbar-custom .nav-link {
      color: black;
    }
    .user-bar-custom {
  background-color: #111111;
  color: #fff;
}

  .dropdown-menu {
    background-color: #111111;
    color: white;
  }

  .dropdown-menu .dropdown-item {
    color: white;
  }

  .dropdown-menu .dropdown-item:hover,
  .dropdown-menu .dropdown-item:focus {
    background-color: #1e1e1e;
    color: #ffffff;
  }

  .dropdown-menu .dropdown-item i {
    color: #05d7a0 !important;
  }

  .dropdown-menu .dropdown-item.text-danger i {
    color: #dc3545 !important; /* mantiene rojo para logout */
  }

  .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.2);
  }
  .nav-link-custom {
  position: relative;
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #05d7a0; /* o el color que prefieras */
  transition: width 0.3s ease;
}

.nav-link-custom:hover::after,
.nav-link-custom:focus::after {
  width: 100%;
}

    @media (max-width: 768px) {
      .top-user-bar {
        justify-content: center !important;
        text-align: center;
      }
    }
