/* ===== Language Selector Styles ===== */

/* Flag icon styling */
.flag-icon {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  width: 20px;
  height: 15px;
}

/* Dropdown menu styling */
.dropdown-menu {
  min-width: 160px;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

/* Dropdown item styling */
.dropdown-item {
  padding: 0.75rem 1rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  transform: translateX(2px);
}

/* Current language text styling */
.current-lang {
  font-weight: 500;
  font-size: 0.9rem;
}

/* Responsive design for mobile */
@media (max-width: 991.98px) {
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 0.5rem;
  }
}
