/* App Loading Animation — Dotted Circular Loader */
.app-loading-spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.app-loading-spinner.hidden {
    display: none;
}

.app-spinner {
    width: 100px;
    height: 100px;
    border: 7px dotted #c9cfd6;
    border-top-color: #1a2634;
    border-right-color: #1a2634;
    border-radius: 50%;
    animation: appSpin 2s linear infinite;
}

.app-spinner-text {
    font-family: 'Calibri', 'Roboto', sans-serif;
    font-size: 16px;
    color: #1a2634;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes appSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .app-spinner {
        animation: none !important;
    }
}
