/* BSI Language Switcher */

.bsi-lang-switcher {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.bsi-lang-item {
    background-color: #E8EFFF;
    text-decoration: none;
    font-weight: 600;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.bsi-lang-item:hover {
    background-color: #f0f0f0;
}

.bsi-lang-item.active {
    background-color: #C7AC6F;
    color: #1A3566;
    cursor: default;
}

/* Flag Style (Simple Text Fallback for now, can add images later) */
.bsi-flag {
    font-size: 14px;
    letter-spacing: 1px;
}