.language-currency-dropdown {
    position: relative;
    color: black !important;
    font-family: 'Roboto', sans-serif !important;
}

.mobileDropdown{
  left: -20px !important;
}

.footerDropdown{
  left: 0px !important;
  top: -330px !important;
}

.lang-curr-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: box-shadow 0.2s;
}

.lang-curr-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: -80px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 4px;
    min-width: 300px;
    padding: 1rem;
    z-index: 1000;
}

.lang-curr-dropdown .dropdown-title {
    font-weight: bold;
    font-size: 15px;
    text-align: left;
    margin-bottom: 4px;
}

.lang-curr-dropdown .dropdown-desc {
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
}

.lang-curr-dropdown label {
    font-size: 13px;
    font-weight: 500;
}

.dropdown-language {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 2px;
    padding: 4px 6px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.dropdown-currencies {
    margin-bottom: 10px;
}

.currency-option {
    padding: 4px 8px;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s;
    color: black;
    display: flex;
    align-items: center;
    gap: 6px;
}

.currency-option.selected,
.currency-option:hover {
    background: #7052fb;
    color: #fff;
}

.save-lang-curr {
    width: 100%;
    color: #fff;
    border-radius: 4px;
    padding: 8px 0;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s;
}

/* Custom Select Dropdowns for Language & Currency */
.custom-select-group {
  margin-bottom: 12px;
}

.custom-select {
  position: relative;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  min-width: 140px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  transition: border 0.2s, box-shadow 0.2s;
}

.custom-select:hover, .custom-select.open {
  border: 1.5px solid #7052fb;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
}

.custom-select.disabled {
  cursor: not-allowed;
  color: #e0e0e0 !important;
}

.custom-select.disabled:hover {
  box-shadow: none;
  border: 1.5px solid #e0e0e0;
}

.custom-select.disabled .custom-select-arrow {
  color: #e0e0e0;
}


.custom-select-options {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  width: 100%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
  z-index: 10;
  margin-top: 2px;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  color: black;
}

.custom-select-option.selected,
.custom-select-option:hover {
  background: #7052fb;
  color: #fff;
}

.save-button{
  background-color: #2ac4b5;
  color: white !important;
  border: 1px solid #2ac4b5;
  transition: all 0.3s ease;
}

.save-button:hover{
  background-color: white;
  color: #2ac4b5 !important;
  border: 1px solid #2ac4b5;
  transition: all 0.3s ease;
}
