/* LinguaPress — Language Switcher */

.lp-switcher {
    font-size: 14px;
}

/* Style liste */
.lp-switcher--list .lp-switcher-list,
.lp-switcher--flags .lp-switcher-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-switcher-item a {
    text-decoration: none;
    color: inherit;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    display: inline-block;
}

.lp-switcher-item a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.lp-switcher-item.lp-active a {
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.08);
}

/* Style dropdown */
.lp-switcher--dropdown select {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

/* Style drapeaux seuls */
.lp-switcher--flags .lp-switcher-item a {
    font-size: 1.5em;
    padding: 2px 4px;
}
