/* Selectorul de limbă */
.lang-selector-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.lang-flag-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-flag {
    width: 40px;
    height: auto;
    cursor: pointer;
}

.lang-name {
    cursor: pointer;
}

/* Vizibilitatea selectorului pe desktop și mobil */
.lang-selector {
    display: block; /* Asigură că selectorul e vizibil pe ambele dispozitive */
}

/* Pe mobil, dăm un pic de stiluri suplimentare */
@media screen and (max-width: 1024px) {
    .lang-selector {
        text-align: center;
        margin-top: 10px;
    }
}
