.bc-compliance {
  display: none;
  position: fixed; /* Stay in place even when scrolling */
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center horizontally and vertically */
  width: 50vw; /* 50% of viewport width */
  padding: 20px; /* Optional padding inside the popup */
  background-color: white; /* Background color */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
  border-radius: 8px; /* Rounded corners */
  z-index: 1000000; /* Ensure it appears on top of other content */
  max-height: 90vh;
  overflow-y: auto;
  & h2 {
    font-weight: 800;
    margin-bottom: 0;
  }
  & p {
    font-family: var(--wp--preset--font-family--nunito);
  }
  & .wp-element-button {
    background-color: var(--wp--preset--color--burrows-slate);
    border-radius: 4px;
    color: var(--wp--preset--color--white);
    margin-right: 0.5rem;
  }
}

.bc-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
  backdrop-filter: blur(10px); /* Blur everything behind the overlay */
  z-index: 999999;
  margin-top: 0;
}
