/* Nyelvváltó gomb a navigációban */
.language-switcher {
  display: inline-block;
  margin-left: 20px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid #0066CC;
  border-radius: 50%;
  padding: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lang-btn:hover {
  transform: scale(1.1);
  border-color: #00A651;
  background: rgba(0, 102, 204, 0.1);
}

.lang-btn img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .language-switcher {
    margin-left: 10px;
  }
  
  .lang-btn {
    width: 38px;
    height: 38px;
  }
  
  .lang-btn img {
    width: 28px;
    height: 28px;
  }
}
