﻿/* Full screen overlay */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Container */
.spinner-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
}

/* Center logo */
.spinner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px; /* logo size */
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Rotating ring */
.spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 10px solid transparent;
    border-top-color: #0d6efd;
    border-right-color: #20c997;
    border-bottom-color: #ffc107;
    border-left-color: #dc3545;
    animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.fa-solid {
    font-size: 40px;
    color: #1a73e8;
}
.fa-regular {
    font-size: 40px;
    color: #1a73e8;
}
