/* Language Selector Styling */
.language-selector {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.language-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}
.language-text:hover {
    color:  var(--point);
}

.flag-icon {
    margin-right: 5px;
    width: 20px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.language-text {
    margin-right: 5px;
    font-size: 14px;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    min-width: 120px;
    display: none;
    z-index: 10000;
    padding: 0;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.language-menu.show {
    display: block;
}

.language-menu li {
    padding: 0;
    margin: 0;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.language-option:hover {
    background: #f5f5f5;
    text-decoration: none;
}

.language-option.active {
    background: #f0f0f0;
    font-weight: bold;
}
.language-option.active .language-text {
    color:  var(--point);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-selector {
        margin-left: auto;
        margin-right: 10px;
    }
    
   
}
