#language-selector {
    position: fixed;
    top: 2px;
    right: 2px;
    z-index: 9999; /* Assurez-vous que l'élément est toujours au-dessus */
     /* Légèrement transparent pour voir en arrière-plan */
     /* Arrondir les bords */
    display: flex;
    height: 16px;
}

.lang-btn {
    margin: 0 3px;
    padding: 0px 6px;
    padding-top: 1px;
    background-color: unset; /* Couleur WordPress par défaut */
    color: #fff !important;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    /* line-height: 0; */
    font-size: 12px;
    /* height: 12px; */
    background: #9db4d9;
    display: flex;
    align-items: center;
}

.lang-btn:hover {
    background-color: #005177; /* Couleur légèrement plus foncée pour l'effet hover */
    color:#fff;
}

.navbar-toggle .icon-bar {
    background: #000 !important;
}


table#traductions {
    border-collapse: collapse;
}

table#traductions td {
    border: 1px solid #aaa;
    padding: 5px;
    text-align: justify;
}

#translation-button
{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 3px 8px;
    font-size: 13px;
    cursor: pointer;
    opacity: 0.7; /* Slightly transparent */
    transition: opacity 0.3s ease;
}

#translation-button:hover
{
    opacity: 1; /* Fully opaque on hover */
}

body.customize-support div#language-selector {
    z-index: 100000;
    top: unset;
    bottom: 45px;
}