.loader__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(8, 128, 240, 0.1);
    border-top-color: var(--loader-color, #0880F0);
    border-radius: 50%;
    animation: loader-spin 0.8s linear infinite;
}

.loader--small .loader__spinner {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

.loader--large .loader__spinner {
    width: 56px;
    height: 56px;
    border-width: 4px;
}

.portfolio__projects__container.loading {
    position: relative;
    min-height: 200px;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

