body {
            font-family: Arial, sans-serif;
        }
        .language-selector {
    position: relative;
    width: 200px; /* Aceeași lățime ca și meniul */
    cursor: pointer;
        }
        .selected-language {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px;
            background: rgba(240, 240, 240, 0.6);
            border-radius: 5px;
            border: 1px solid #ccc;
            color: black;

        }
        .selected-language img {
            width: 24px;
            height: 16px;
            margin-right: 5px;
        }
        .selected-language::after {
            content: '\25BC';
            font-size: 12px;
            margin-left: 5px;
        }
        .language-list {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid #ccc;
            border-radius: 5px;
            display: none;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .language-list li {
            display: flex;
            align-items: center;
            padding: 7px;
            cursor: pointer;
            color: black;
            width: 100%;
        }
        .language-list li:hover {
            background: rgba(240, 240, 240, 0.8);
        }
        .language-list img {
            width: 24px;
            height: 16px;
            margin-right: 15px;
        }
.lang {
    display: none;
}
