/* Language Select Styling */
select[name="language"] {
  height: 30px;
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 16px;
  background-color: #ffffff;
  color: #333;
  cursor: pointer;
  outline: none;
}

select[name="language"]:focus {
  border-color: #3a6166;
  box-shadow: 0 0 5px rgba(58, 97, 102, 0.3);
}

select[name="language"] option {
  background-color: #ffffff;
  color: #333;
  padding: 5px;
}

/* Custom dropdown */
#lang-picker {
  height: 30px;
  margin-top: 19px;
  font-family: "DM Sans", sans-serif;
  border: none;
  font-weight: 600;
  font-size: 12px;
}
.custom-sel a {
  text-decoration: none;
  text-transform: uppercase;
  margin: 0;
  padding: 10px;
  text-align: left;
  font-family: "Raleway";
  color: #546e7a;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  display: block;
}

.custom-sel a:hover {
  text-decoration: none;
  background-color: #edf0f2;
  color: #ffffff;
}

.custom-sel a.lang-selected {
  background-color: transparent;
}

.custom-sel a.lang-selected:hover {
  background-color: transparent;
  color: #546e7a;
}

.lang-hidden {
  display: none;
}

.lightblue {
  color: #03a9f4;
  margin-left: -4px;
}

.show-sel {
  background-color: #ffffff;
  box-shadow: -5px 0px 65px 0px rgba(0, 0, 0, 0.18);
}

.custom-sel {
  margin: 30px;
  display: inline-block;
}


