/* CSS for Mail Cart */

.mail-cart-container {
    min-height: 400px; /* Prevents container from collapsing during updates */
}

.letter-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 0.5rem;
}

/* Ensure smooth transitions for content that changes height */
.mail-cart-summary {
    min-height: 150px;
}

/* Stripe Payment Form Styling */
.stripe-payment-container {
    border: 1px solid #ccc;
    padding: 16px;
    border-radius: 4px;
    background-color: white;
    margin-bottom: 20px;
}

.stripe-payment-container:focus-within {
    border-color: #594AE2;  /* MudBlazor primary color */
}

.stripe-payment-container.disabled {
    background-color: rgba(0, 0, 0, 0.12);
    cursor: not-allowed;
}

#payment-element {
    min-height: 40px;
}

.stripe-error-message {
    color: #dc3545 !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 20px;
}

/* Payment processing overlay */
.payment-processing-overlay {
    position: relative;
}

.payment-processing-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}
