﻿.spinner {
    width: 50px;
    height: 50px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #0078d4; /* Azure blue or your brand color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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