﻿/* Overlay */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Card */
.loader-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    animation: zoomIn 0.2s ease-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-gif {
    width: 100px;
    margin-bottom: 15px;
}

.loader-text {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

/* Modal popup extender background fix */
.modalBackground {
    background-color: transparent !important;
}
