/* Payment Step Styles */
.payment-form {
    max-width: 600px;
    margin: 0 auto;
}

.payment-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #0d6efd;
    text-align: center;
    margin-bottom: 1.5rem;
}

.stripe-element-container {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-reference {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.payment-status {
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.payment-status.success {
    color: #198754;
}

.payment-status.error {
    color: #dc3545;
}

/* Stripe Element Theme Overrides */
.StripeElement {
    background-color: #fff !important;
    padding: 12px !important;
    border-radius: 4px !important;
    border: 1px solid #ced4da !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

.StripeElement--focus {
    border-color: #86b7fe !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}

.StripeElement--invalid {
    border-color: #dc3545 !important;
}

.StripeElement--complete {
    border-color: #198754 !important;
}

/* Step Navigation Enhancements */
.payment-step.completed .step-icon {
    color: #198754;
}

.step-navigation .disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading States */
.payment-processing {
    position: relative;
}

.payment-processing::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Summary Step Payment Info */
.payment-info-section {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-info-section .badge {
    font-size: 0.875rem;
    padding: 0.5em 0.75em;
}
