/* payment.css - Payment progress modal styles */
/* Introduced with ST3 */

.payment-stage {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stage-icon {
    width: 20px;
    display: inline-flex;
    justify-content: center;
    margin-right: 0.5rem;
}

.stage-text {
    flex: 1;
}

.stage-pending {
    color: #6c757d; /* muted gray */
}

.stage-success {
    color: #198754; /* green */
}

.stage-failed {
    color: #dc3545; /* red */
}