.vertical-align-middle {
    vertical-align: middle;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-grab {
    cursor: grab;
}

.cursor-grabbing {
    cursor: grabbing;
}

#logo-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkboxes-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.border-left-white {
    border-left: 1px solid #ffffff;
}

.border-bottom-light {
    border-bottom: 1px solid #222B32;
}


.br-4 {
    border-radius: 4px;
}

.br-tr-4 {
    border-top-right-radius: 4px !important;
}

.loader {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px; /* Espace après le texte */
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid rgb(226, 46, 46);
    border-radius: 50%;
    animation: loading-spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes loading-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.table-wrapper {
    overflow: hidden;
}
.table {
    width: 100%;
    margin-bottom: 0;
}
.scrollable-tbody {
    display: block;
    max-height: 400px; /* Ajustez cette valeur selon vos besoins */
    overflow-y: auto;
}
thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}
tbody {
    display: block;
    width: 100%;
    table-layout: fixed;
}
tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}
th, td {
    word-wrap: break-word;
}

.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-center {
    align-items: center;
}

.align-self-center {
    align-self: center;
}
