#click-overlay-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    padding: 10px 15px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, background 0.3s;
}
#click-overlay-toggle:hover {
    opacity: 1;
}
#click-overlay-toggle.active {
    background: red;
}
/* Tooltip styling */
.click-tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 10000;
  max-width: 300px;
  word-wrap: break-word;
}
