/* شعارات البطاقات */
.crcica-mpgs-card-logos {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    align-items: center;
}

.crcica-mpgs-card-logos img {
    height: 32px;
    width: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px;
    background: #fff;
}

/* تنبيه العمولة */
.crcica-mpgs-fee-notice {
    color: #d63384;
    font-size: 0.85em;
    margin-top: 8px;
    font-weight: 600;
}

/* صفحات النتائج */
.crcica-payment-result {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.crcica-payment-result.success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.crcica-payment-result.failed {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.crcica-payment-result.pending {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
}

.crcica-payment-result h2 {
    margin-bottom: 20px;
}

.crcica-payment-result .transaction-details {
    background: rgba(255,255,255,0.7);
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    text-align: left;
}

.crcica-payment-result .transaction-details table {
    width: 100%;
}

.crcica-payment-result .transaction-details td {
    padding: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.crcica-payment-result .qr-section {
    margin-top: 20px;
}

.crcica-payment-result .qr-section img {
    width: 180px;
    height: 180px;
}

.crcica-payment-result .action-buttons {
    margin-top: 25px;
}

.crcica-payment-result .action-buttons a,
.crcica-payment-result .action-buttons button {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-retry {
    background: #0066cc;
    color: #fff;
}

.btn-home {
    background: #6c757d;
    color: #fff;
}