/* CSS */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
    margin: 20px;
}

.lang-switch label {
    font-weight: 600;
    color: #333;
}

.lang-switch select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-switch select:hover {
    border-color: #0078D4;
    background-color: #fff;
}

.lang-switch select:focus {
    outline: none;
    border-color: #0078D4;
    box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.3);
}

/*--lang switcher--*/

.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switch button {
    background-color: #f5f5f5;
    border: 1px solid #b90707;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
    color: #333;
    font-size: 14px;
}

.lang-switch button:hover {
    background-color: #e8f0fe;
    border-color: #4285f4;
}

.lang-switch button.active {
    background-color: #4285f4;
    color: white;
    border-color: #4285f4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-switch button:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}
