.custom-dropdown {
  position: relative;
}

.custom-dropdown-toggle {
  cursor: pointer;
  position: relative;
}

.custom-dropdown-toggle::after {
  content: "▾";
  margin-left: 0.5rem;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.custom-dropdown.show .custom-dropdown-toggle::after {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  border-radius: 0.375rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1050;
}

.custom-dropdown.show .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #666;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-dropdown-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .custom-dropdown-menu {
    position: static !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-left: 1rem;
    margin-top: 0.5rem;
    background: transparent;
  }

  .navbar-collapse .custom-dropdown-menu {
    display: none;
  }

  .navbar-collapse .custom-dropdown.show .custom-dropdown-menu {
    display: block;
  }
}

/* .nav-link {
            color: #333 !important;
        } */

.nav-link:hover {
  color: #007bff !important;
}
