.language-switcher {
    position: fixed;
    top: 65px;
    width: 100px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 5px 10px;
    border: 1px solid #4185F6;
    background: white;
    color: #4185F6;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #4185F6;
    color: white;
}

.lang-btn.active {
    background: #4185F6;
    color: white;
} 

.language-select {
    position: relative;
    width: 100px;
}

.selected-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.selected-lang:hover {
    border-color: #1E64FF;
}

.arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid transparent;
    margin-left: 8px;
}

.lang-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: none;
}

.lang-options.show {
    display: block;
}

.lang-options li {
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.lang-options li:hover {
    background: #f5f5f5;
    color: #1E64FF;
}

.lang-options li.active {
    color: #1E64FF;
    background: #f0f7ff;
} 