@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: Poppins, sans-serif;
    background-image: linear-gradient(
        to bottom,
        rgba(228, 228, 228, 0.5),
        rgba(228, 228, 228, 0.5)
      ),
      url("../img/backgroundw.png");
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

*{
    font-weight: 500;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #e7e7e7;
    border: 1px solid #cacaca;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #0c9155;
}
header{
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
}
span.name{
    color: #10b068;
}
.profileText{
    padding-right: 1rem;
}
.profilelogo{
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profilelogo i{
    font-size: 4rem;
    cursor: pointer;
    transition: 0.4s ease;
    color: #0c9155;
}
.profilelogo i:hover{
    color: #10b068;
}
.settingsbtn{
    padding-top: 1rem;
}

.field-container {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.field-container span, .field-container input {
    flex: 1;

}
.field-container input {
    font-size: 1rem;
    font-family: Poppins, sans-serif;
    padding: 0;
    border: none;
    border-bottom: #ccc 2px solid;
}
.field-container input:focus {
    outline: none;
}
.field-container button {
    margin-right: 10px;
    border: none;
    cursor: pointer;
    /* width: 3rem; */
}

select.file-type-select {
    margin-bottom: 0;
}
.flexname{
    display: flex;
    /* flex-direction: row; */
    justify-content: start;
    gap: 0.5rem;
}
.flexname select{
    display: flex;
    align-items: center;
    position: relative;
}

header i {
    font-size: 2rem;
    color: #0c9155;
    transition: 0.4s ease;
    cursor: pointer;
}
header i:hover{
    color: #10b068;
    font-size: 2.3rem;
    transform: rotate(-90deg);
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes overlayFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.settings-overlay {
    position: absolute;
    z-index: 1;
    top:0;
    bottom:0;
    left:0;
    right:0;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    opacity: 0; 
    animation: overlayFadeIn 0.4s ease forwards;
}

/* Popup */
.popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    opacity: 0; 
    animation: fadeIn 0.4s ease forwards;
    max-width: 30rem;
}

.settings-overlay.closing {
    animation: overlayFadeOut 0.4s ease forwards;
}

.popup.closing {
    animation: fadeOut 0.4s ease forwards;
}
.popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.popup h3 {
    margin-bottom: 1rempx;
    font-size: 1.5rem;
}
.popup label {
    display: block;
    margin: 1rem 0;
    text-align: left;
    user-select: none;
    font-size: 1rem;
}
.popup input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.5);
}

.icon-cell {
    width: 50px; /* Set a fixed width for the icon column */
    text-align: center; /* Center the icon horizontally */
}

.delete-icon {
    color: red; /* Set the default color to red */
    font-size: 18px; /* Set the size of the icon */
    transition: transform 0.3s ease, font-size 0.3s ease; /* Smooth transition for transform and size */
}

.icon-cell:hover .delete-icon {
    transform: scale(1.3); /* Slightly enlarge the icon on hover */
}

.icon-cell:hover .delete-icon:before {
    content: '\f829'; /* Font Awesome code for the new icon */
    font-family: "Font Awesome 5 Free"; /* Ensure the correct font family is used */
    font-weight: 900; /* Font weight for solid icons */
    cursor: pointer;
}

.container {
    background-color: #fff;
    padding: 1.25rem 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    margin: 3.125rem;
    /* min-width: 37.5rem; */
}
.min-width{
    min-width: 37.5rem; 

}

h1, h2 {
    color: #333;
    margin-bottom: 1.25rem;
    text-align: center;
}

label {
    display: block;
    font-size: 1rem;
    margin: 0.625rem 0 0.313rem;
    color: #555;
}
form {
    background-color: #f5f5f5;
    padding: 1.25rem;
    border-radius: 0.625rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    /* max-width: 100rem;
    min-width: 60rem; */
    margin: 1.25rem auto;
    display: flex;
    flex-direction: column;
}
.button{
    background-color: #f5f5f500;
    padding: 1.25rem 0px;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(255, 255, 255, 0.1);
    max-width: 37.5rem;
    margin: 0px auto;
}



button{
    color: #fff;
    font-size: 1rem;
    background-color: #0c9155;
    border: none;
    border-radius: 0.313rem;
    padding: 0.625rem;
    transition: 0.3s ease;
}
button:hover{
    background-color: #10b068;
    cursor: pointer;
}

.filter-type-select {
    max-width: 0;
    opacity: 0;
    transition: max-width 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
    margin: 0;
}

.filter-type-select.transition-visible {
    max-width: 200px; /* Largeur souhaitée du select */
    opacity: 1;
}

.filter-type-select.transition-hidden {
    max-width: 0;
    opacity: 0;
}

#filter-type-btn {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
    border: 1px solid #ccc;
    background-color: #0c9155;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#filter-type-btn:hover {
    background-color: #10b068;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#sort-valide-btn {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
    border: 1px solid #ccc;
    background-color: #0c9155;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#sort-valide-btn:hover {
    background-color: #10b068;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
#sort-date-btn {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
    border: 1px solid #ccc;
    background-color: #0c9155;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#sort-date-btn:hover {
    background-color: #10b068;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
#sort-index-btn {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    position: relative;
    border: 1px solid #ccc;
    background-color: #0c9155;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#sort-index-btn:hover {
    background-color: #10b068;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Conteneur pour les icônes */
.icon-container {
    position: relative;
    width: 1.5rem; /* Assure que les icônes ne bougent pas */
    height: 1.5rem;
}

/* Icônes superposées */
.icon-container i {
    position: absolute;
    top: 0.1rem;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    
}

/* Icône visible */
.icon-visible {
    opacity: 1;
    transform: scale(1);
}

/* Icône cachée */
.icon-hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none; /* Empêche les interactions avec l'icône cachée */
}

/* Animation bouton (rebond) */
@keyframes button-bounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(0.95);
    }
    70% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.button-click-animation {
    animation: button-bounce 0.5s ease-out;
}
.filter-options{
    margin: 20px 0;
}
.btn-filter {
    padding: 10px 15px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 10px;
}
.btn-filter:hover {
    background-color: #ddd;
}

form label {
    display: block;
    margin-bottom: 0.625rem;
    font-size: 1rem;
    color: #333;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
    width: 100%;
    padding: 0.625rem;
    font-size: 1rem;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    border: 0.063rem solid #cacaca;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    border-radius: 0.313rem;

}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus {
    border: 0.063rem solid #0c9155;
}

form input[type="submit"] {
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    background-color: #0c9155;
    color: white;
    border: none;
    border-radius: 0.313rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

form input[type="submit"]:hover {
    background-color: #10b068;
}

input[type="submit"].suppr{
    background-color: #910c0c;
}
input[type="submit"].suppr:hover{
    background-color: #a10808;
}

form select {
    width: 100%;
    padding: 0.625rem;
    border: 0.063rem solid #ddd;
    border-radius: 0.313rem;
    background-color: white;
    /* margin-bottom: 1.25rem; */
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.3s ease;
    font-family: Poppins, sans-serif;
}

form select:focus {
    border-color: #0c9155;
}



form option[style*="display: none"] {
    display: none;
}

form.logout{
    margin: 0;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 2rem;
}

form.logout input{
    width: 20rem;
    background-color: #be1212;
    transition: 0.4s ease;
    margin: 0;
    height: 3rem;
    margin: auto;
}
form input{
    font-family: 'poppins', sans-serif;
}
form.logout input:hover{
    background-color: #eb0f0f;
}
p.Erreur {
    color: red;
    font-weight: bold;
    text-wrap: balance;
}

p.Success {
    color: green;
    font-weight: bold;
    text-wrap: balance;

}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem auto;
    transition: width 0.4s ease; /* Transition fluide sur les colonnes */
    table-layout: auto; /* Pour permettre un redimensionnement fluide */
}

th, td {
    padding: 10px; /* Padding initial des cellules */
    border: 1px solid #ccc; /* Bordure des cellules */
    text-align: start;
    transition: min-width 0.4s ease, width 0.4s ease, padding 0.4s ease, border-width 0.4s ease; /* Ajout des transitions pour le padding et la bordure */
}

tbody tr {
    transition: max-height 0.4s ease, opacity 0.4s ease, border-width 0.4s ease; /* Animation de la hauteur, opacité et bordure */
    overflow: hidden; /* Empêche le contenu de déborder */
    opacity: 1; /* Complètement visible */
    display: table-row; /* Conserve le comportement de tableau */
}

tbody tr.hidden {
    max-height: 0; /* Réduire la hauteur à 0 */
    opacity: 0; /* Rendu invisible */
    pointer-events: none; /* Empêche les interactions */
    border: 0; /* Supprime les bordures visibles */
}
tbody tr.hidden td{

    border: 0; /* Supprime les bordures visibles */
}

tbody tr td {
    padding: 10px; /* Padding normal */
    transition: padding 0.4s ease; /* Transition fluide du padding */
}

tbody tr.hidden td {
    padding: 0; /* Réduire le padding à 0 pour les lignes masquées */
}

tbody tr td > div {
    transition: max-height 0.4s ease, opacity 0.4s ease; /* Animation sur le contenu des cellules */
    max-height: 50px; /* Hauteur normale */
    overflow: hidden; /* Empêche le débordement */
}

tbody tr.hidden td > div {
    max-height: 0; /* Hauteur 0 pour masquer complètement */
    opacity: 0; /* Rendu invisible */
}


th {
    background-color: #f0f0f0;
    font-weight: bold;
}
th[data-label="Télécharger"] i , th[data-label="Distribuer"] i, th[data-label="Impressions"] i {
    color: #0c9155;
    padding: 0 3px;
}
th[data-label="Delete"] i {
    color: red;
    padding: 0 3px;
    text-align: center;
    transform: scale(1.1);

}
th[data-label="Delete"] {
    text-align: center;
}
td[data-label="Révision"], td[data-label="Validé"], td[data-label="Télécharger"], td[data-label="Distribuer"], td[data-label="Impressions"] {
    text-align: center;
    font-weight: 600;


}
td {
    background-color: #fff;
}

td input[type="checkbox"] {
    -ms-transform: scale(1.5); /* IE */
    -moz-transform: scale(1.5); /* FF */
    -webkit-transform: scale(1.5); /* Safari and Chrome */
    -o-transform: scale(1.5); /* Opera */
    transform: scale(1.5);
    
}

tr:nth-child(even) td {
    background-color: #f9f9f9;
}

textarea{
    border: 0.063rem solid #0c9155;
}
textarea:focus{
    outline: none !important;
    border: 0.1rem solid #0c9155;
}
.hidden-column {
    display: none;
}

.btn-return{
    color: #0c9155;
    text-decoration: none;
    margin: auto;
}
input[type="checkbox"]:disabled {
    cursor: not-allowed;  
}

/* comment section */
.comment-flex{
    display: flex;
    justify-content: space-between;
}
.see-more{
    color: #0c9155;
    text-decoration: none;
    font-weight: 600;
}

.drop-zone {
    border: 0.125rem dashed #cccccc;
    border-radius: 0.25rem;
    width: 100%;
    height: 12.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: #666;
    text-align: center;
    cursor: pointer;
}
.drop-zone.dragover {
    border-color: #000;
    background-color: #f0f0f0;
}

.custom-multi-select {
    position: relative;
    width: 100%;
    margin: 0px 0px 0.625rem 0px;
}

.select-box {
    
    border: 0.063rem solid #ccc;
    padding: 0.625rem;
    cursor: pointer;
    font-weight: 500;
    border-radius: 0.313rem;
    background-color: white;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
    color: #0c9155;
}

.options-container {
    display: none;
    border: 0.063rem solid #ccc;
    border-top: none;
    max-height: 9.375rem;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.options-container.show {
    display: block;
}

.options-container label {
    display: flex;
    align-items: center;
    padding: 0.313rem 0.625rem;
    font-size: 1em;
    cursor: pointer;
}

.options-container label:hover {
    background-color: #f0f0f0;
}

input[type="checkbox"] {
    accent-color: #0c9155;
}
.options-container input[type="checkbox"] {
    margin-right: 0.625rem;
    accent-color: #0c9155;
}

.select-box.active {
    border-color: #0c9155;
    border-radius: 0.313rem;
}
.options-container label.selected {
    font-weight: bold; 
}

.topspace{
    margin-top: 1.25rem;
}

a#forgot-password{
    color: #0c9155;
    text-decoration: none;
    transition: 0.3s ease;
}
a#forgot-password:hover{
    color: #10b068;
    transition: 0.3s ease;
}

input#forgot-email{
    width: 100%;
    padding: 0.625rem;
    font-size: 1rem;
    font-family: Poppins, sans-serif;
    font-weight: 500;
    box-sizing: border-box;
    border: 0.063rem solid #cacaca;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    border-radius: 0.313rem;
}


.researchbox{
    font-family: Poppins, sans-serif;
    width: 100%;
}

.address{
    margin: 15px 0;
    font-family: Poppins, sans-serif;
    width: 100%; 
    text-align: center;
}
.distribution-checkbox[disabled] {
    pointer-events: none;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

a.name{
    color: #0c9155;
    text-decoration: none;
}
.nom-affaire-container {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 5px;
}
.fixed-prefix, .fixed-dot {
    font-weight: bold;
    font-size: 18px;
}
#affaire-annee, #affaire-numero {
    text-align: center;
    font-size: 16px;
}
#affaire-annee {
    width: 3rem;
}
#affaire-numero {
    width: 4rem;
}

.password-input-wrapper input {
    width: 100%;
    padding-right: 2.5rem; /* espace pour l'icône */
}

.button-group{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.password-input-wrapper .toggle-password {
    position: absolute;
    right: 0.5rem;
    cursor: pointer;
    color: #0c9155; /* couleur conforme à votre thème */
    font-size: 1.2rem;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.information {
    margin-top: 0.625rem;
    color: #0c9155;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 11.25rem;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 0.313rem;
    padding: 0.313rem;
    position: absolute;
    bottom: 125%; 
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.85rem;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%; 
    left: 50%;
    margin-left: -0.313rem;
    border-width: 0.313rem;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#masquableF {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease;
}

#masquableF.visible {
    max-height: 31.25rem;
    opacity: 1;
    transform: scaleY(1);
}

.btn-mask{
    font-size: 1em;
    color: #0c9155;
    background-color: #e0e0e0;
    border: none;
    border-radius: 0.313rem;
    padding: 0.188rem;
    cursor: pointer;
}
.btn-mask:hover{
    background-color: #e0e0e0;
    color: #0c9155;

}
button{
    font-family: 'Poppins', sans-serif;
}

.confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.confirmation-popup {
    background: white;
    padding: 20px;
    border-radius: 5px;
    width: 300px; /* Adjust width as needed */
    text-align: center; /* Center the text */
}

.confirm-btn, .cancel-btn {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirm-btn {
    background-color: #910c0c; /* Color for delete button */
    margin-right: 20px;
    color: white;
}

.cancel-btn {
    background-color: #555; /* Color for cancel button */
    color: white;
}
.confirm-btn:hover {
    background-color: #be1212; /* Color for delete button */
}

.cancel-btn:hover {
    background-color: #666; /* Color for cancel button */
}



/* --------- */
/* --------- */
/* --------- */
/* RESONSIVE */
/* --------- */
/* --------- */
/* --------- */
/*

/* Écrans 1440p */
html {
    font-size: 16px; /* 1rem = 16px */
}

@media (max-width: 720px) {
    html{
    font-size: 12px;
    
    }
    textarea{
        width: 10rem;
        font-size: 12px;
    }
    p{
        margin: 0.7rem 0;
    }
    body{
        display: flex;
        justify-content: center;
        align-items: baseline;
    }
    .container {
        background-color: #fff;
        padding: 0px 1rem 1rem;
        border-radius: 0.625rem;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        margin: 5rem 1rem;
        min-width: 0rem;
    }
    label {
        /* display: block; */
        font-size: 1rem;
        margin: 0rem 0 0rem;
    }
    form {
        background-color: #f5f5f5;
        padding: 0rem;
        border-radius: 0.625rem;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        width: 100%;
    }

    form.dropzoneForm{
        flex-direction: row;
    }
    .drop-zone{
        padding: 1rem;
        text-wrap: balance;
        height: 5rem;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    button{
        width: 100%;
    }

    table.table-responsive{
        margin: 0;
    }
    .table-responsive td[data-label="Nom"] {
        display: flex;
        flex-direction: column; /* Place le label en haut et le texte en dessous */
        align-items: flex-start; /* Aligner proprement */
    }
    
    .table-responsive td[data-label="Nom"]::before {
        white-space: nowrap; /* Empêche le label (NOM) de se wrap */
    }
    
    .table-responsive td[data-label="Nom"] .file-name {
        word-break: break-word;  /* Coupe uniquement le nom du fichier */
        overflow-wrap: break-word; /* Assure la coupure même sans espace */
        white-space: normal; /* Permet au texte du fichier de passer à la ligne */
    }
    
    
    .table-responsive table,
    .table-responsive thead,
    .table-responsive tbody,
    .table-responsive th,
    .table-responsive td,
    .table-responsive tr {
        display: block;
    }

    .table-responsive td[data-label="Delete"],
    .table-responsive th[data-label="Delete"] {
        display: none;
    }

    /* Masquer les en-têtes du tableau */
    .table-responsive thead {
        display: none;
    }

    .table-responsive tr {
        margin-bottom: 0.5rem;
        display: flex;
        flex-direction: column;
        border: 1px solid #ccc;
        padding: 0.5rem;
        box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    }

    .table-responsive td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem;
        text-align: left;
        border: none;
    }

    /* Style pour afficher les titres des colonnes */
    .table-responsive td::before {
        content: attr(data-label); /* Utilise l'attribut data-label pour ajouter un titre */
        font-weight: bold;
        text-transform: uppercase;
    }


    tr:nth-child(even) td {
        background-color: #fff;
    }


}
/* Écrans entre 1921px et 2560px */
@media (min-width: 1921px) and (max-width: 2560px) {
    html {
        font-size: 18px; /* 1rem = 18px */
    }
}

/* Écrans entre 2561px et 3440px */
@media (min-width: 2561px) and (max-width: 3440px) {
    html {
        font-size: 20px; /* 1rem = 20px */
    }
}

/* Écrans à partir de 3441px */
@media (min-width: 3441px) {
    html {
        font-size: 22px; /* 1rem = 22px */
    }
}