/* Language Switcher Button */
.language-switcher {
    margin-left: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.lang-btn img {
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.lang-btn span {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */
@media only screen and (max-width: 991px) {
    .language-switcher {
        margin-left: 0;
        margin-right: 10px;
    }
}
