
#gs-year-switch {
  position: relative;
  width: 20rem;
  margin-bottom: 20px;
  font-family: inherit;
  z-index: 1000;
  user-select: none;
}

#gs-year-switch:hover{
    cursor: pointer;
    /* background-color: #EEE6E2; */
}

.dropdown-selected {
  background-color: rgba(255, 255, 255, 0.4); /* Glass effect */
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  color: #333;
}

.dropdown-selected:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.dropdown-options {
  position: absolute;
  top: 115%; /* Slight gap */
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px); /* Stronger blur for options */
  -webkit-backdrop-filter: blur(15px);
  border-radius: 1.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 0;
  font-size: 2rem;
}

#gs-year-switch.open .dropdown-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-option {
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.1s;
  color: #333;
  font-size: 2rem;
}

.dropdown-option:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.dropdown-option.active {
  background-color: rgba(0, 0, 0, 0.05); /* Subtle active state */
  font-weight: bold;
}

.dropdown-option.disabled {
    opacity: 0.5;
    background-color: transparent !important;
    cursor: not-allowed;
    color: #888;
}

.image-container{
    flex-wrap: nowrap;
}