.author-name {
	display: none;
}
ul {
  list-style-type: disc !important; /* ensures bullets show */
  padding-left: 20px; /* adds indentation to lists */
}

/* Below is added for subscription form problems */
#subscribe-email input#subscribe-field {
    outline: none;
    border: 1px dotted currentColor;
}
/* Subscribe Button */
#subscribe-submit button.wp-block-button__link.no-border-radius {
    background-color: var(--wp--preset--color--primary);
    border-color: var(--wp--custom--button--border--color);
    border-width: var(--wp--custom--button--border--width);
    border-style: var(--wp--custom--button--border--style);
    color: var(--wp--custom--button--color--text);
    font-size: var(--wp--custom--button--typography--font-size);
    font-style: normal;
    font-weight: 100;
} 
/* Subscribe Button - Hover */
#subscribe-submit button.wp-block-button__link.no-border-radius:hover {
    text-decoration: none;
    cursor: pointer;
    color: var(--wp--custom--button--hover--color--text);
    background-color: var(--wp--custom--button--hover--color--background);
    border-color: var(--wp--custom--button--hover--border--color);
} 

/* Registration Form - Inputs */
#contact-form-728 input[type="text"], #contact-form-728 input[type="tel"], #contact-form-728 input[type="email"] {
    outline: 1px dotted currentColor;
}

/* Registration Form - Multiselects */
#contact-form-728 select {
    outline: 1px dotted currentColor;
}

#contact-form-4245 input {
        outline: 1px dotted currentColor;
}

#todays-classes-widget h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
  text-align: center;
}

#todays-classes-widget ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

#todays-classes-widget li {
  margin-bottom: 6px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#todays-classes-widget .class-name {
  font-weight: 500;
}

#todays-classes-widget .class-time {
  color: #fcba72;
  font-size: 14px;
  font-weight: 500;
}
/* Sticky CTA button — hidden by default */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;          /* desktop left */
  right: auto;
  z-index: 9999;
  background: #222;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* When scrolled, show it */
.sticky-cta.show-on-scroll {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Smooth stable hover — NOT flashing */
.sticky-cta.show-on-scroll:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

/* Ensure inner text inherits correctly */
.sticky-cta a {
  color: #fff;
  text-decoration: none;
}

/* Mobile: one-line sticky CTA */
@media (max-width: 768px) {
  .sticky-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(8px);
    bottom: 15px;

    /* Make it one line */
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 14px;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-cta.show-on-scroll {
    transform: translateX(-50%) translateY(0);
  }

  .sticky-cta.show-on-scroll:hover {
    transform: translateX(-50%) translateY(-2px);
  }
}
#bba-dropin-widget > .bba-dropin-open-btn {
  display: none;
}
