/* Styles for Website B (iframe content and thank you page) */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 10px; /* Reduced margin for iframe */
    background-color: #f9f9f9; /* Slightly different background for distinction */
}

#payment-form-container {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

/* Style for Stripe Element container */
#card-element {
    border: 1px solid #ccc;
    padding: 10px 12px;
    border-radius: 4px;
    background-color: white;
    margin-bottom: 10px; /* Space before error message */
}

/* Style for error messages */
#card-errors {
    color: #fa755a; /* Stripe's recommended error color */
    font-size: 0.9em;
    margin-top: 5px;
    min-height: 1.2em; /* Prevent layout shifts */
}

#status-message {
    font-size: 0.9em;
    color: #555;
}


/* Styles for Temporary Thank You Page */
.thank-you-container {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 500px;
}

.thank-you-container h1 {
    color: #28a745; /* Green for success */
    margin-bottom: 15px;
}

/* Simple CSS Loader */
.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
