/* Style the container of the Stripe element */
#card-element {
  background-color: white;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Style the button used to submit the form */
#submit {
  background-color: #6772e5;
  color: white;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

#submit:hover {
  background-color: #5469d4;
}

/* Style the message area */
#payment-message {
  color: #d32f2f;
  font-size: 16px;
  margin-top: 20px;
}
