.bytenft-loader {
  position: fixed;
  display: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #0000004f;
  z-index: 9999;
}

.bytenft-loader img {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-radius: 100%;
}

.bytenft-loader-background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Transparent black background */
  z-index: 9998; /* Slightly lower than the loader */
  pointer-events: none; /* Ensure this element blocks clicks */
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
.consent-banner button {
  margin: 0 10px;
}

.bytenft-main-error {
    background: #fff;
    border: 1px solid #df1b41;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 20px;
}

.bytenft-error-header {
    font-size: 16px;
    margin-bottom: 8px;
}

.bytenft-error-message {
    margin-bottom: 10px;
    color: #444;
}

.bytenft-error-fields {
    margin: 0;
    padding-left: 18px;
}

.bytenft-error-fields li {
    margin-bottom: 4px;
    color: #111;
    font-size:16px;
    list-style: disc !important;
}

.woocommerce-invalid input,
.woocommerce-invalid select {
    border-color: #df1b41 !important;
    box-shadow: 0 0 0 1px #df1b41 !important;
}