/* NAVMENU dropdown begin */

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
  min-width: 50px; /* Set a minimum width to ensure each item has its own line */
}

.dropdown-menu li {
  width: 260px;
}

.dropdown-menu ul li a {
  margin-right: 0;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

/* Add hover styling for dropdown items */
.dropdown-menu a {
  display: block;
  padding: 2px 15px; /* Adjust padding as needed Top and Bottom, Right and Left */
  color: #0A71CE;
  text-decoration: none;
  text-align: left;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
  color: #ff8000; /* Adjust the color as needed */
}

/* NAVMENU dropdown end */
