.bdf-language-switcher-select {
  position: relative;
}

.bdf-language-switcher-select-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-width: 1px;
  border-style: solid;
  cursor: pointer;
}

.bdf-language-switcher-select-options {
  position: absolute;
  top: 100%;
  background: white;
  display: none;
  flex-direction: column;
  z-index: 100;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
}

.bdf-language-switcher-select-option {
  padding: 4px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}

.bdf-language-switcher-select-option:hover {
  backdrop-filter: invert(20%);
}

.bdf-language-switcher-select:hover .bdf-language-switcher-select-options {
  display: flex;
}
