.pt-7 {
    padding-top: 7%;
}

.pt-8 {
    padding-top: 8%;
}

.pt-10 {
    padding-top: 9%;
}

.sidebar {
    width: 80px; /* Largeur de la sidebar */
    height: 100vh; /* Hauteur de la sidebar */
    position: fixed; /* Position fixe */
    background-color: #343a40; /* Couleur de fond */
    padding-top: 20px;
}
.nav-link {
    color: white; /* Couleur des icônes */
    text-align: center;
    margin-bottom: 15px;
}
.nav-link i {
    font-size: 1.5rem; /* Taille des icônes */
}
.nav-link:hover {
    color: orange;
}

.content {
    margin-left: 100px; /* Marge pour éviter que le contenu soit caché sous la sidebar */
    padding: 20px;
}

.table {
    margin-top: 20px;
}

.choices {
    background-color: #212529;
    color: #fff;
    border-radius: 0.375rem;
}

.choices[data-type*=select-one].is-open::after {
    border-color: #212529;
    border-radius: 0.375rem;
}

.choices__inner {
    background-color: #212529;
    border: 1px solid #495057;
    border-radius: 0.375rem;
    font-size: 16px;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
    background-color: #333;
    color: #fff;
    border: 1px solid #212529;
    border-radius: 0.375rem;
    font-size: 12px;
}

.choices[data-type*=select-one] .choices__input {
    background-color: #212529;
}

/*choices__item choices__item--choice choices__item--selectable*/

.choices__item {
    background-color: #212529;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: #303030;
}

.choices__input {
    background-color: #212529;
}

.center-headers th {
    text-align: center !important;
}

.selected-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.option-tag {
    background-color: #0d6efd;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.remove-tag {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: bold;
    padding: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.remove-tag:hover {
    background-color: rgba(255,255,255,0.2);
}