html, body {
  height: 100%;
  width: 100%;
  background-color: #FDFDFC; /* Set background color for the entire site */
  margin: 0; /* Removes default browser margin */
  padding: 0; /* Removes default browser padding */
  font-family: Arial, Helvetica, sans-serif;
}

header,
footer {
  text-align: center; /* Center-aligns the text within header and footer */
  margin: 0 auto; /* Centers the container itself */
  padding: 1rem 0; /* Add padding to separate from other content */
}

.custom-button {
  display: inline-block;
  /* Display buttons as inline-block */
  justify-content: center;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: white;
  background-color: #8E4EC6;
  border: 1px solid #8E4EC6;
  border-radius: 30px;
  /* Rounded corners */
  cursor: pointer;
  user-select: none;
  margin: 0 auto;
  text-decoration: none; /* Remove underline */
}


.iframe-wrapper {
  position: relative;
  height: 800px; /* Match your iframe height */
}

.iframe-bottom-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px; /* Height for the overlay */
  z-index: 10; /* Ensures it's above the iframe */
  background-color: #FDFDFC;
}