.dropbtn {
  border: none;
  cursor: pointer;
  font-size: calc(0.75rem * 1.25); /* font-small multiplied by the amount I scale the font in the text input */
  background-color: transparent;
  display: flex;
  flex-direction: column;
  
    @media(min-width: 768px) {
        width: 100%;
        align-items: center;
    }
    @media(min-width: 1440px) {
      font-size: calc(1rem);
    }
}

/* Dropdown button on hover & focus */
/* .dropbtn:hover, */
.dropbtn:focus {
  color: #2980b9;
}

.dropbtn:focus + .dropbtnIcon {
  color: #2980b9;
}

.dropbtnIconTurn {
  transform: rotate(90deg);
}

.dropbtnLabel {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: #2b2b2b;
}

.dropbtnIcon {
  width: 15px;
  height: 15px;
  transition: transform 0.3s ease;
  display: inline-block;
  fill: #2b2b2b;
}

.dropbtnMenuIcon {
  width: 25px;
  height: 25px;
  display: inline-block;
  fill: white;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}

.dropdown-lang {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
}


/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 150%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  z-index: 10;
  border-radius: 6px;
  overflow: hidden;
  
  @media(min-width: 768px) {
      top: 200%;
  }
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
  display: flex;
}

.people-dropdown {
  min-width: 200px;
  flex-direction: row;
  align-items: end;
  gap: 1rem;
}

.date-dropdown {
  min-width: 160px;
  width: auto;
  flex-direction: column;
  gap: 1rem;
}

.menu-dropdown {
  min-width: 160px;
  flex-direction: column;
  gap: 1rem;
  justify-content: start;
}

.dropdown-nav-item {
    text-decoration: none;
    color: #606060;
}

.dropInput {
  background-color: #f0f0f0;
  border: 2px solid #e3e3e3;
  border-radius: 10px;
  padding: 0.25rem;
}

.dropInput:focus {
  outline-color: #3c91e6;
}

.dropLabel {
  font-size: 14px;
}
