.menu-dropdown-container {
  position: relative;
  line-height: 1.6;
  color: #00367c;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid #00367c;
  border-radius: 5px;
  width: fit-content;
  box-shadow: 1px 2px 2px #89898973;
  width: 100%;
  height: 34px;
  z-index: 2;
  margin-bottom: -2px;
  box-sizing: border-box;
  /* margin-left: -80px; */
  font-size: 14px;
  font-weight: bold;
  margin: 5px 0px 5px 0px;
  align-self: center;
}

.menu-dropdown-container .link {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /* gap: 12px; */
  overflow: hidden;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  width: 100%;
  height: 100%;
}

.menu-dropdown-container .link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  background-color: #f0f8ff;
}

/* SVG icon styling */
.menu-dropdown-container .link svg {
  width: 18px;
  height: 15px;
  top: 20px;
  left: 17px;
  fill: #00367c;
  transition: transform 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.selectDropDown {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 100%;
  width: calc(100%);
  border: 1px solid #89898973;
  border-radius: 5px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  pointer-events: none;
  overflow: hidden;
  border-top: 2px solid #00367c;
}

/* .menu-dropdown-container:hover .selectDropDown:not(.hide-dropDown) { */
.selectDropDown:not(.hide-dropDown) {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* 
.menu-dropdown-container:hover {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
} */

.selectDropDown .menu-dropdown-container:hover {
  background: #e6ebf2;
}

.menu-dropdown-container:not(:has(.hide-dropDown)) .link svg {
  transform: rotate(-180deg);
}

.dropDownBar-item {
  width: 100%;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease, color 0.2s ease;
  color: #000000;
  font-size: 14px;
  font-family: "rubik";
  font-weight: normal;
}

.dropDownBar-item:last-child {
  border-bottom: none;
}

.dropDownBar-item:hover {
  background-color: #e9e9e9;
  color: #00285b;
}
