/* Simple Language Switcher - WORKING VERSION */
.language-switcher {
    position: relative;
    z-index: 9999;
}

.lang-current {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-current:hover {
    background: #0056b3;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    min-width: 150px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    display: none;
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

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

.lang-option:last-child {
    border-bottom: none;
}

.lang-flag {
    margin-right: 8px;
}