#toolbar-div {
  position: fixed !important;
  bottom: 20px !important;
  top: auto !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: row;
  gap: 10px;
  z-index: 9999;
  padding: 0; /* Or padding: 10px; if spacing is needed */
  background: none !important; /* In case something else is still applying */
}

/* Optional: Style individual controls */
#toolbar-div > div {
  width: 40px !important;
  height: 40px !important;
  font-size: 20px !important;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #CCC;
  color: #000;
  cursor: pointer;
}

#toolbar-div>div:hover {
    background: #444;
}

/* Responsive tweaks */
@media screen and (max-width: 600px) {
    #toolbar-div {
        bottom: 15px;
        padding: 6px;
        gap: 8px;
    }

    #toolbar-div>div {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
}