.hidden-tab {
    display: none;
  }

  .active-tab {
    display: block;
  }

  .hidden {
    display: none;
}

.bg-opacity-low::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: -1;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown div {
    padding: 8px 12px;
    color: black;
    cursor: pointer;
}

.dropdown div:hover {
    background-color: #f0f0f0;
}

.bg-opacity-low::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: -1;
}