.scalar-app .no-underline {
  display: none;
}

.switch-languages {
  position: fixed;
  bottom: 8px;
  left: 8px;
  z-index: 100;
  display: flex ;
  align-items: center;
  gap: 4px;
}

.switch-languages .btn {
  padding: 4px 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: Arial;
}

.switch-languages .btn.active {
  color: rgba(0, 0, 0, 1);
  background: rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.dark-mode .switch-languages .btn.active {
  color: rgba(255, 255, 255, 1) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  font-weight: 500 !important;
}

.dark-mode .switch-languages .btn {
  color: rgba(255, 255, 255, 0.6) !important;
}