/* Role: Language toggle button styling */

.lang-toggle {
  position: absolute;
  top: 14px;
  right: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.lang-toggle:hover {
  background: rgba(4, 227, 178, 0.15);
  border-color: rgba(4, 227, 178, 0.5);
  transform: scale(1.1);
}

.lang-toggle:focus {
  outline: 2px solid #04e3b2;
  outline-offset: 2px;
}

/* Mobile responsive adjustments for language toggle */
@media (max-width: 768px) {
  .lang-toggle {
    width: 40px;
    height: 40px;
    margin-left: 0;
    right: 28px;
    top: 12px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .lang-toggle {
    width: 36px;
    height: 36px;
    margin-left: 0;
    right: 18px;
    top: 10px;
    font-size: 1rem;
  }
}
