/* Country Switcher Styles */
.country-switcher {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.dropdown-toggle {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.dropdown-toggle:hover {
  border-color: #999;
  background: #f9f9f9;
}

.dropdown-toggle img {
  margin-right: 8px;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dropdown-toggle span {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: none;
  min-width: 200px;
  z-index: 9999;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background 0.2s ease;
}

.dropdown-menu li a img {
  margin-right: 10px;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.dropdown-menu li a:hover {
  background: #f0f0f0;
}

.dropdown-menu li a.active {
  background: #e8f4fd;
  font-weight: 600;
  color: #0066cc;
}
