.spinner-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 27, 0.9);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
}

.spinner-loader-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(59, 130, 246, 0.1);
    border-top: 4px solid #22c55e;
    animation: spin 1s linear infinite;
}

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