.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.auto-pay-banner {
    width: 100%;
    background: linear-gradient(135deg, #003366 0%, #0055aa 100%);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 12px 24px rgba(0, 51, 102, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.auto-pay-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
.auto-pay-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255,255,255,0.9);
}
.auto-pay-status {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 12px;
    margin-top: 8px;
}
.auto-pay-status span {
    font-weight: 600;
    color: #fff;
}
.payment-method {
    text-align: center;
    padding: 16px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    width: 100%;
}
.payment-method:hover, .payment-method.active {
    border-color: #00A9FA;
    background: #F8FBFF;
}

.payment-method.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
    border-color: #ccc;
}

.payment-method.disabled:hover {
    border-color: #ccc;
    background: #f5f5f5;
    transform: none;
}
.payment-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 40px;
}
.payment-method img.payment-icon, .payment-method .payment-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 40px;
}
.payment-method svg {
    width: 48px;
    height: 48px;
    display: block;
}
.payment-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-top: 4px;
    margin-bottom: 4px;
}

.payment-time {
    font-size: 11px;
    color: #666;
    text-align: center;
    line-height: 1.2;
    font-style: italic;
}
.client-info { background: #F8F9FA; padding: 20px; border-radius: 15px; margin: 20px 0; }
.info-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.info-label { font-weight: 500; color: #666; }
.info-value { font-weight: 600; color: #000C34; }
.total-amount { font-size: 32px; font-weight: bold; color: #00A9FA; text-align: center; margin: 20px 0; }
/* Estilos para mensaje de estado al corriente */
.status-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.status-message.al-corriente {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-color: #4CAF50;
}

.status-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.status-message h4 {
    color: #2e7d32;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: bold;
}

.status-message p {
    color: #388e3c;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.status-details {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.status-details p {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}

.status-badge.activo {
    background: #4CAF50;
    color: white;
}


/* Estilos para mostrar email en pantalla de pago */
.email-display-container {
    margin: 15px 0;
    padding: 0;
}

.email-display-simple {
    background: transparent;
    border: none;
    padding: 0;
}

.email-display-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.email-label {
    font-weight: 500;
    color: #666;
}

.email-value {
    font-weight: 600;
    color: #333;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.email-edit-icon {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.email-edit-icon:hover {
    background: #f5f5f5;
    color: #333;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .email-display-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px;
    }
}
@media (max-width: 768px) { 
    .payment-methods { 
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .payment-method {
        height: 110px;
        padding: 12px;
    }
}

/* Responsive: soporte movil */
@media (max-width: 600px) {
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .payment-method {
        width: 100%;
        padding: 14px;
        height: 110px;
    }
    .client-info {
        padding: 10px;
    }
}


.payment-method img.payment-icon[alt="Pago en Kiosko"] {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
} 


.email-change-button {
  margin-top: 10px;
  border: 1px solid #007aff;
  background: #ffffff;
  color: #005fcc;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.email-change-button:hover,
.email-change-button:focus {
  background: #eef6ff;
  outline: none;
}
