.form-check-input , .custom-checkbox{
    width: 1.2rem;
    height: 1.2rem;
}
.file-preview-image{
    cursor: grabbing;
}
.imageWrapper .img {
    height: 190px;
    min-width: 190px;
    max-width: 190px;
    border: 2px solid #e0e0e0;
    padding: 4px;
    object-fit: contain;
}

#thumbnailLoader.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#thumbnailLoader.loader-overlay.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

#thumbnailLoader .spinner {
    width: 60px;
    height: 60px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

table .list-profile{
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.download-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    background: #E9EEF1;
    display: flex;
    align-items: center;
    justify-content: center;
}
