.language-selector {
    position: relative;
    margin: 1rem;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.flag-icon {
    width: 24px;
    max-height: 24px;
}

.lang-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 0.5rem;
    z-index: 1000;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: background 0.2s;
    background: none;
    border: none;
}

.lang-option:hover {
    background: #f0f0f0;
}

.fixed-in-header {
    position: absolute;
    right: 100px;
    top: 0;
    bottom: 0;
    margin-block: auto;
    display: flex;
    align-items: center;
    z-index: 10;
}

@media (max-width: 768px) {
    .fixed-in-header {
        right: 30px; 
    }
    .locale_label {
        display: none;
    }
}

[x-cloak] {
    display: none !important;
}
