@import url('./design-system.css');

.app-loading-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.app-loading-modal.is-visible {
    display: flex;
}

.app-loading-content {
    width: min(90vw, 360px);
    padding: 28px 34px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
    text-align: center;
    font-family: var(--app-font-family);
}

.app-loading-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto;
    border: 4px solid #f3f3f3;
    border-top-color: #2a6fdb;
    border-radius: 50%;
    animation: app-loading-spin 1s linear infinite;
}

.app-loading-message {
    margin: 15px 0 0;
    color: #333;
    font-weight: 600;
}

@keyframes app-loading-spin {
    to {
        transform: rotate(360deg);
    }
}
