@charset "UTF-8";
.dropdown {
  position: relative;
}
.dropdown .dropdown-toggle {
  background-color: white;
  border: 1px solid #323232;
  border-radius: 30px;
  margin-top: 16px;
  margin-right: 10px;
  padding: 4px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropdown .dropdown-toggle span {
  color: #323232;
  margin-right: 5px;
}
.dropdown .dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 4px;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 10px;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  display: none;
  z-index: 1;
}
.dropdown .dropdown-menu.show {
  display: block;
}
.dropdown .dropdown-menu div {
  padding: 6px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown .dropdown-menu div:hover {
  background-color: #f0f0f0;
}
.dropdown .dropdown-menu div .checkmark {
  color: #28a745;
  font-size: 14px;
  margin-left: 5px;
}
.dropdown .dropdown-menu .language-option {
  cursor: pointer;
}
.dropdown .dropdown-menu .language-option.active {
  pointer-events: none;
  opacity: 0.6;
}
