/* Container styling */
#payment-stripe {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card input styling */
#card-element {
    background: white;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

/* Stripe placeholder styling */
.StripeElement {
    width: 100%;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Button styling */
#payment-stripe button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#payment-stripe button:hover {
    background: #0056b3;
}
