/* The Sticky Container */
/*.seo-sticky-widget {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 9999;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right bottom;
}*/
.seo-sticky-widget {
  position: fixed !important;
  right: 0 !important;
  top: 40% !important;
  z-index: 999999 !important; /* Extremely high to stay on top */
  width: auto;
  height: auto;
  display: block !important;
  visibility: visible !important;
}

/* The Link/Button Style */
/*.sticky-audit-link {
  display: flex;
  align-items: center;
  background: #28a745; 
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 25px;
  border-radius: 8px 8px 0 0;
  box-shadow: -2px -2px 10px rgba(0,0,0,0.2);
  font-weight: bold;
  font-family: sans-serif;
  transition: background 0.3s ease, padding-right 0.3s ease;
  white-space: nowrap;
}*/
/* Simpler layout for debugging - horizontally on the right */
.sticky-audit-link {
  display: block;
  background: #28a745;
  color: #fff !important;
  padding: 15px 20px;
  border-radius: 5px 0 0 5px;
  font-family: sans-serif;
  text-decoration: none;
  font-weight: bold;
}

.sticky-audit-link:hover {
  background: #218838;
  padding-right: 35px;
}

.sticky-audit-link .icon {
  margin-right: 10px;
  transform: rotate(90deg); /* Counter-rotate icon so it stays upright */
  display: inline-block;
  font-size: 1.2rem;
}

/* Responsive: Hide on very small screens if preferred */
@media (max-width: 600px) {
  .seo-sticky-widget {
    top: auto;
    bottom: 20px;
    right: 10px;
    transform: none;
  }
  .sticky-audit-link {
    border-radius: 50px;
    padding: 10px 20px;
  }
  .sticky-audit-link .text {
    font-size: 12px;
  }
}