/* ==================================================
   ICPV - Estilos Unificados para Respuestas de AZUL
   ================================================== */

.icpv-donation-card {
    max-width: 480px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
}

.icpv-donation-card h3 {
    color: #0b1a30;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.icpv-donation-card p.icpv-subtitle {
    color: #6b7280;
    font-size: 15px;
    text-align: center;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

/* Tablas del Recibo */
.icpv-receipt-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.icpv-receipt-table tr {
    border-bottom: 1px solid #f9fafb;
}

.icpv-receipt-table tr:last-child {
    border-bottom: none;
}

.icpv-receipt-table td {
    padding: 12px 0;
    font-size: 14.5px;
    line-height: 1.5;
}

.icpv-receipt-table td.label {
    text-align: left;
    color: #4b5563;
    font-weight: 500;
}

.icpv-receipt-table td.value {
    text-align: right;
    color: #111827;
    font-weight: 600;
}

.icpv-receipt-table tr.amount-row td.value {
    color: #10b981;
    font-size: 16px;
    font-weight: 700;
}

/* Círculos de Estado (Éxito y Error) */
.icpv-success-circle, .icpv-error-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icpv-success-circle { background: #e6f7ed; }
.icpv-error-circle { background: #fef2f2; }

.icpv-success-circle svg, .icpv-error-circle svg {
    width: 30px;
    height: 30px;
    fill: none;
}

.icpv-success-circle svg { stroke: #10b981; }
.icpv-error-circle svg { stroke: #ef4444; }

/* Botones Estilo Píldora Oasis */
.icpv-submit-donation-btn {
    display: block;
    width: 100%;
    background: #213056;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.icpv-submit-donation-btn:hover {
    background: #0b1a30;
    color: #ffffff;
}

.icpv-error-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.icpv-btn-secondary {
    display: block;
    width: 100%;
    background: #f3f4f6;
    color: #4b5563;
    border: none;
    border-radius: 30px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
}

.icpv-btn-secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
}