body {
    background-color: #F5F7FA;
}

#root {
    min-height: 100vh;
    display: flex;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.loader {
    margin: auto;
    width: 50px;
    height: 50px;
}

.circular-loader {
    animation: rotate 2s linear infinite;
}

.loader-path {
    fill: none;
    stroke-width: 3px;
    animation: animate-stroke 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

.dropzone-icon {
    display: none !important
}

.dropzone-preview-item {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content !important;
    max-width: 400px !important;
    height: 150px !important;
}

.dropzone-preview-item img {
    width: fit-content !important;
    max-width: 100% !important;
    height: fit-content !important;
    max-height: 100% !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
    position: relative !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

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

@keyframes animate-stroke {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke: #41D66F;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
        stroke: #41D66F;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
        stroke: #41D66F;
    }
}