/* Le conteneur du loader */
.custom-loader-container {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Le spinner lui-même : un cercle fin qui tourne */
.custom-spinner {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-top-color: #3b82f6; /* Couleur de ta marque */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Flouter légèrement le contenu qui charge sans le faire disparaître */
.dash-loading-callback {
    filter: blur(2px);
    opacity: 0.6;
    pointer-events: none;
    transition: all 0.3s ease;
}