#cookie-notice {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%; /* Ensure full width */
  margin: 0; /* Remove margin to ensure full width */
  padding: 0.5rem;
  border: 1px solid #eee;
  background-color: #333; /* Changed to a dark background color */
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.05);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 22px;
  font-size: 15px;
  text-align: center;
  color: #fff; /* Changed text color to white for better contrast */
}

.cookie-notice-more {
  margin: 0 0.25rem;
  text-decoration-style: dashed;
  color: inherit;
}
.cookie-notice-close {
  padding: 0 0.5rem;
  border: 1px solid #ddd;
  border-radius: 50px; /* or use 50% for a fully circular button */
  line-height: 20px;
  text-decoration: none;
  color: white; /* Set the text color to white */
  background-color: black; /* Set the background color to black */
}
@media only screen and (min-width: 768px) {
  #cookie-notice {
      bottom: 1rem;
      border-radius: 0.25rem;
  }

  .cookie-notice-close {
      float: right;
  }
}
 /* Custom styles for the card element container */
 #card-element {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 40px;
  margin-bottom: 10px;
}
/* Custom styles for the error message */
#card-errors {
  color: red;
  margin-top: 10px;
}