.header {
  border-bottom: none;
}


/* Ensure dropdown is not hidden by any parent's overflow settings */
.header-container, .header-top, .container, .navbar {
  overflow: visible !important;
}

/* Adjust dropdown position if needed */
.btn-group .dropdown-menu {
  position: absolute;
  top: 100%; /* Adjust this if the dropdown appears too high or too low */
  left: 0;   /* Aligns the dropdown to the left edge of the button */
  z-index: 1050; /* Ensures dropdown is above other content */
}

/* Specific adjustments to the dropdown button group */
.btn-group.open .dropdown-menu {
  display: block; /* Ensures the dropdown is visible when button is clicked */
  min-width: 350px; /* Adjust width as necessary to fit content */
}

