.loading_wrap {
    position: fixed;
    inset: 0;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loading_wrap > .loading {
    margin-top: 20px;
}

.loader_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader_logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.3));
}

.loading {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(148, 163, 184, 0.2);
    border-top-color: #38bdf8;
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

/* Améliorer la cliquabilité des icônes d'action dans les tableaux */
.table .i-Edit,
.table .i-Remove,
.table .i-Eye,
.table .i-File-TXT,
.table .i-More-Vertical {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    cursor: pointer;
}
