.full-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
}

.loader-content {
    position: relative;
    z-index: 10;
    background: white;
    padding: 40px;
    /* border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    text-align: center;
    min-width: 300px;
    max-width: 90%;
}

.loader-spinner {
    margin-bottom: 20px;
}

.spinner {
    animation: rotate 2s linear infinite;
}

.spinner .path {
    stroke: #3B82F6;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

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

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.loader-text {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.loader-subtext {
    font-size: 14px;
    color: #6B7280;
}