.form-check-input{
    height:30px;
    width:30px;
    border-radius:50%;
    border:1px solid var(--cholton-blue)!important;
    background-color:#fff;
    transition:all 0.3s ease;
    cursor:pointer;
    &:checked{
        background-color:var(--cholton-blue);
    }
}



/* Carte contenant la table */
.table-card{
    background:#fff;
    border-radius:18px;
    padding:10px;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
    overflow:hidden;
}

/* Table */
.table-modern{
    margin:0;
    border-collapse:separate;
    border-spacing:0;
}

/* Header */
.table-modern thead th{
    background:linear-gradient(135deg,#f8fafc,#eef2f7);
    color:#344054;
    font-size:.85rem;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    border:none;
    padding:15px 12px;
    white-space:nowrap;
}

/* Coins arrondis du header */
.table-modern thead th:first-child{
    
    border-top-left-radius:12px;
}

.table-modern thead th:last-child{
    border-top-right-radius:12px;
   
}

/* Corps */
.table-modern tbody td{
    border:none;
    padding:14px 12px;
    vertical-align:middle;
    background:#fff;
}

/* Séparation légère */
.table-modern tbody tr:not(:last-child) td{
    border-bottom:1px solid #f1f3f5;
}

/* Hover */
.table-modern tbody tr{
    transition:.2s;
    border-left:4px solid transparent;
   
}



/* Badges d'état */
.badge-etat{
    padding:6px 12px;
    border-radius:30px;
    font-size:.8rem;
    font-weight:600;
}

.badge-actif{
    background:#dcfce7;
    color:#15803d;
}

.badge-inactif{
    background:#fee2e2;
    color:#b91c1c;
}

/* Boutons actions */
.table-modern .btn{
    border-radius:10px;
    width:36px;
    height:36px;
    padding:0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    
}



.dataTables_filter input{
    border-radius:12px !important;
    border:1px solid #dee2e6 !important;
    padding:8px 12px !important;
}

.dataTables_length select{
    border-radius:12px !important;
}

.dataTables_paginate .paginate_button{
    border-radius:10px !important;
    margin:0 2px;
}

.table-modern tbody tr:hover td:first-child{
    border-left:4px solid var(--cholton-blue);
}
.table-modern tbody tr:hover td{
 background:#f8fbff!important;
 transition:all 0.3s ease;
}
.table-modern tbody tr td:first-child{
    border-left:4px solid transparent;
}
.table-modern tbody tr{
    position:relative;
}

.table-modern tbody tr:hover{
    box-shadow:0 3px 12px rgba(13,110,253,.08);
}

.table-modern {
    font-size:0.8em!important;
}
