/* === Payment Form === */
#amount,
#payment_email,
#name,
#message,
#card-element {
    display: block;  /* Add this line */
    width: 100%;
    max-width: 500px;
    padding: 10px;
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    background-color: #f9f4f1;
    text-align: left;
}

#message {
    resize: vertical;
    min-height: 80px;
}

#submit-payment-button {
    background-color: #ffdd00;
    color: #000;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 16px;
    width: 100%;
    max-width: 200px;
    display: block;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}

#submit-payment-button:hover {
    background-color: #ffb845;
}

#payment-message {
    margin-top: 12px;
    font-weight: bold;
    color: green;
}