/* Language Switcher Styles */

#language-switcher-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px; /* Adjust width as needed */
  height: 40px; /* Adjust height as needed */
}

.language-button {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 100%;
}

.language-button:hover {
  background-color: #d4a843;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.language-button .flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.5);
}

.language-button .lang-text {
  transition: opacity 0.2s ease;
}
