.custom-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.custom-loader {
    width: 70px;
    height: 70px;
    border: 6px solid #e5e5e5;
    border-top: 6px solid #0d6efd;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}