/* Payment Success Page Styles */
.payment-success-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.payment-success-checklist li {
    position: relative;
    padding: 12px 16px 12px 44px;
    margin-bottom: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 15px;
    color: #1F2937;
    font-weight: 500;
}

.payment-success-checklist li:last-child {
    margin-bottom: 0;
}

.payment-success-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 18px;
    border-radius: 50%;
    background: #DCFCE7;
    border: 2px solid #86EFAC;
    color: #15803D;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

/* Payment Fail Page Styles */
.payment-fail-reasons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.payment-fail-reasons li {
    position: relative;
    padding: 12px 16px 12px 44px;
    margin-bottom: 12px;
    background: #FEF3C7;
    border: 1px solid #FDE68A;
    border-radius: 12px;
    font-size: 15px;
    color: #92400E;
    font-weight: 500;
}

.payment-fail-reasons li:last-child {
    margin-bottom: 0;
}

.payment-fail-reasons li::before {
    content: "!";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 18px;
    border-radius: 50%;
    background: #FEF3C7;
    border: 2px solid #FBBF24;
    color: #D97706;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}
