/**
 * @file
 * Simple styles for Shaqraa Language Switcher block.
 */

.shaqraa-language-switcher {
  position: relative;
  display: inline-block;
}

/* Debug styles - remove if not needed */
.shaqraa-language-switcher .language-switcher-toggle {
  background-color: transparent !important;
  border: none !important;
}

.language-switcher-dropdown .language-switcher-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.language-switcher-dropdown .language-switcher-toggle:hover {
  opacity: 0.7;
}

.language-switcher-dropdown .language-switcher-toggle:focus {
  outline: none;
  opacity: 0.7;
}

.language-switcher-dropdown .language-switcher-toggle img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.language-switcher-dropdown .dropdown-menu.language-links {
  min-width: 120px;
  padding: 8px 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.language-switcher-dropdown .language-link {
  display: block;
  padding: 8px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.language-switcher-dropdown .language-link:hover {
  background-color: #f8f9fa;
  color: #333;
  text-decoration: none;
}

.language-switcher-dropdown .language-link.active {
  background-color: #1b8354 !important;
  color: #ffffff;
}

.language-switcher-dropdown .language-name {
  display: block;
}

/* RTL Support */
[dir="rtl"] .language-switcher-dropdown .dropdown-menu.language-links {
  text-align: right;
}

/* Language direction specific styles */
.lang-rtl .language-switcher-dropdown .dropdown-menu.language-links {
  text-align: right;
}

.lang-ltr .language-switcher-dropdown .dropdown-menu.language-links {
  text-align: left;
}

.lang-rtl .language-switcher-dropdown .language-link {
  text-align: right;
}

.lang-ltr .language-switcher-dropdown .language-link {
  text-align: left;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .language-switcher-dropdown .language-switcher-toggle {
    padding: 6px;
  }
  
  .language-switcher-dropdown .language-switcher-toggle img {
    width: 20px;
    height: 20px;
  }
  
  .language-switcher-dropdown .dropdown-menu.language-links {
    min-width: 100px;
  }
  
  .language-switcher-dropdown .language-link {
    padding: 6px 12px;
    font-size: 13px;
  }
} 

.language-links {
  inset: unset !important;
  bottom: -98px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}