.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #007AFF;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}


@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}