.app-request-loading {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(1px);
    cursor: wait;
    touch-action: none;
}

.app-request-loading[hidden] {
    display: none !important;
}

.app-request-loading__panel {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #fff;
    color: #1f2937;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.app-request-loading__spinner {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 3px solid #dce9e4;
    border-top-color: #399276;
    border-radius: 50%;
    animation: app-request-spin 0.7s linear infinite;
}

@keyframes app-request-spin {
    to { transform: rotate(360deg); }
}
