.language-selector {
    position: fixed;
    top: 130px;
    left: 10px;
    z-index: 1000;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.language-selector button {
    margin: 0;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
    min-width: 45px;
}

.language-selector button:first-child {
    border-radius: 4px 4px 0 0;
}

.language-selector button:last-child {
    border-radius: 0 0 4px 4px;
    border-bottom: none;
}

.language-selector button:hover {
    background: #f0f0f0;
}

.language-selector button.active {
    background: #007bff;
    color: white;
}
