/* We're not using sass for this one, don't delete if you're confused why there isn't a corresponding scss file */

/* Mobile Language Select Styles */
.mobile-flag-icon {
  min-height: 15px;
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.current-language {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.current-language-mobile-wrapper {
  display: flex !important;
  gap: 16px !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

.mobile-language-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: 12px;
  flex: 1;
  transition: background-color 0.2s ease;
}

.mobile-language-link:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-language-link.active {
  font-weight: 500;
  background-color: rgba(0, 123, 255, 0.1);
}

.mobile-language-link.active .mobile-flag-icon {
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

/* Update language list to use flexbox */
.language-list ul {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin: 0;
  padding: 8px;
  list-style: none;
  justify-content: flex-start;
  align-items: center;
}

.language-list li {
  padding-top: 0 !important;
  display: flex;
}
