/* Professional Stripe Payment Styling - No Emojis */

.stripe-payment-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 2px solid #E0E6EB;
}

.payment-tab {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: -2px;
}

.payment-tab:hover {
    color: #0A0A79;
    background: rgba(10, 10, 121, 0.05);
}

.payment-tab.active {
    color: #0A0A79;
    border-bottom-color: #0A0A79;
}

#stripe-payment-element {
    margin: 20px 0;
}

#stripe-payment-element:empty {
    display: none;
}

.stripe-loading {
    text-align: center;
    padding: 40px;
    color: #6B7280;
    font-size: 14px;
}

.stripe-error {
    padding: 16px;
    background: #FEE2E2;
    border: 1px solid #EF4444;
    border-radius: 4px;
    color: #991B1B;
    font-size: 14px;
}

.invoice-info {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
}

.invoice-info-content h4 {
    margin: 0 0 16px 0;
    color: #0A0A79;
    font-size: 18px;
    font-weight: 600;
}

.invoice-info-content p {
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0;
}

.invoice-info-content ul {
    margin: 16px 0;
    padding-left: 24px;
    color: #374151;
    font-size: 14px;
    line-height: 1.8;
}

.invoice-info-content ul li {
    margin: 8px 0;
}

.invoice-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
    font-size: 13px;
    color: #6B7280;
}

.invoice-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.invoice-success-content {
    background: white;
    padding: 48px;
    max-width: 500px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.invoice-success-content h2 {
    color: #111827;
    font-size: 24px;
    margin-bottom: 16px;
}

.invoice-success-content p {
    color: #6B7280;
    font-size: 15px;
    line-height: 1.6;
    margin: 12px 0;
}

.invoice-success-content strong {
    color: #0A0A79;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    margin: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    border: 2px solid;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: #0A0A79;
    color: white;
    border-color: #0A0A79;
}

.btn-primary:hover {
    background: #050540;
    border-color: #050540;
}

.btn-secondary {
    background: white;
    color: #0A0A79;
    border-color: #0A0A79;
}

.btn-secondary:hover {
    background: rgba(10, 10, 121, 0.05);
}

#payment-error {
    display: none;
    margin: 16px 0;
    padding: 12px 16px;
    background: #FEE2E2;
    border: 1px solid #EF4444;
    border-radius: 4px;
    color: #991B1B;
    font-size: 14px;
}

/* Ensure Stripe Elements look professional */
.StripeElement {
    padding: 12px 14px;
    border: 1px solid #E0E6EB;
    border-radius: 4px;
    background: white;
    transition: border-color 0.2s ease;
}

.StripeElement--focus {
    border-color: #0A0A79;
    box-shadow: 0 0 0 3px rgba(10, 10, 121, 0.1);
}

.StripeElement--invalid {
    border-color: #EF4444;
}

.StripeElement--webkit-autofill {
    background-color: #FEFDE8 !important;
}

/* Payment Section Container */
#payment-section {
    margin: 24px 0;
    padding: 24px;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
}

#payment-section h3 {
    margin: 0 0 20px 0;
    color: #111827;
    font-size: 20px;
    font-weight: 600;
}
