/* ========================================
   Payment Feedback Pages
   ======================================== */

.result-container {
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result-card {
    background: var(--rr-surface);
    border-radius: var(--rr-radius-lg);
    border: 1px solid var(--rr-border);
    padding: 50px;
    width: min(420px, 100%);
    text-align: center;
    box-shadow: var(--rr-shadow-md);
}

.result-card h2 {
    margin-top: var(--rr-space-md);
    font-weight: 700;
    color: var(--rr-text-strong);
}

.result-card p {
    margin-top: 10px;
    color: var(--rr-text-secondary);
    line-height: 1.5;
}

.actions {
    margin-top: var(--rr-space-lg);
}

.redirect-info {
    margin-top: 20px;
    font-size: 13px;
    color: var(--rr-text-disabled);
}

.cancel-animation,
.success-animation {
    width: 72px;
    height: 72px;
    margin: auto;
}

.success-animation svg {
    width: 72px;
    height: 72px;
}

@media (max-width: 599.98px) {
    .result-card {
        padding: var(--rr-space-md);
    }
}
