.sprout-product-badge-container {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    padding: 10px 15px;
    background: rgba(180, 180, 185, 0.15);
    color: var(--color-base-text);
    font-family: var(--font-heading-family);
    font-size: 13px;
    line-height: 180%;
    justify-content: space-between;
}

.sprout-product-badge-content {
    display: flex;
    align-items: center;
}

.sprout-product-icon-container {
    margin-right: 15px;
}

.spt-banner-icon img {
    background-color: white;
    border-radius: 10px;
}

.sprout-product-icon {
    width: 100%;
    min-width: 36px;
    max-width: 44px;
    background-color: white;
    border-radius: 10px;
}

.sprout-product-modal-button,
.sprout-product-badge-link {
    outline: none;
    border: none;
    background-color: transparent;
}

.sprout-product-info-icon {
    margin: 0;
}

/* Existing styles */
.SproutModalMain {
  display: none;
  position: fixed;
  z-index: 10000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

.SproutModalContent {
  background-color: #fefefe;
  font-family: var(--font-body-family);
  margin: auto;
  padding: 20px;
  width: 80%;
  border-radius: 10px;
  max-width: 560px;
}

.SproutModalClose {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.SproutModalClose:hover,
.SproutModalClose:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.SproutModalText {
  color: black !important;
}

/* New styles for tabs */
.SproutModalTabs {
  overflow: hidden;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 20px;
  margin-top: 10px;
  display: flex;
  gap: 4px;
}

.SproutModalTabs button {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  outline: none;
  cursor: pointer;
  padding: 12px 24px;
  transition: all 0.2s ease;
  font-size: 16px;
  position: relative;
  margin-bottom: -1px;
  color: #666;
}

.SproutModalTabs button:hover {
  background-color: #ffffff;
  color: #333;
}

.SproutModalTabs button.active {
  background-color: #ffffff;
  color: #000;
  border-bottom: 2px solid #ffffff;
  font-weight: 600;
}

.SproutModalTabs button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #ea1212;
}

.SproutModalTabContent {
  padding: 20px 12px;
  background: #ffffff;
}

.sprout-learn-more-link {
  color: white;  /* or any other color you want */
  text-decoration: underline;
  text-align: center;
}


/* Counter */
/* Default styles for larger screens */
.spt-impact-banner-background {
  background: url(https://sprout-trees.imgix.net/total-counted-section-backround.jpeg?fm=webp&auto=format&w=1000);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #1CC39C;
}

.spt-impact-banner-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
}

.spt-impact-banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font-heading-family);
  color: white;
  padding: 80px 60px;
}

.spt-impact-banner-heading {
  line-height: 160%;
  text-align: center;
  width: 100%;
  margin: 0 0 20px 0;
  font-size: 32px;
}

.spt-impact-banner-details {
  line-height: 180%;
  text-align: center;
  margin: 30px 60px 0px 60px;
}

.spt-impact-banner-total {
  font-size: 48px;
}

.spt-impact-banner-subtext {
  font-size: 16px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .spt-impact-banner-content {
    padding: 40px 20px;
  }

  .spt-impact-banner-heading {
    font-size: 24px;
  }

  .spt-impact-banner-details {
    margin: 20px 20px 0 20px;
  }

  .spt-impact-banner-total {
    font-size: 36px;
  }

  .spt-impact-banner-subtext {
    font-size: 14px;
  }
}

/* app styles for app-counter */

  .app-counter .spt-impact-banner-content {
    padding: 40px 20px;
  }

  .app-counter .spt-impact-banner-heading {
    font-size: 24px;
  }

  .app-counter .spt-impact-banner-details {
    margin: 20px 20px 0 20px;
  }

  .app-counter .spt-impact-banner-total {
    font-size: 36px;
  }

  .app-counter .spt-impact-banner-subtext {
    font-size: 14px;
  }

/* Style for disabled toggle state */
.spt-toggle-disabled {
  opacity: 0.5;
  pointer-events: none;

}

/* Style for toggle handle during processing */
.spt-toggle-processing .spt-tu-ctl {
  right: 15px !important; /* Move halfway */
  background-color: #e0e0e0 !important; /* Indicate processing state */
}

