.quick-buttons {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}


.quick-access-btn i {
  font-size: 20px; /* Increase this number as needed */
}


/* Tooltip default (shown on right of each button) */
.quick-access-btn {
  position: relative;
}

.quick-access-btn .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.85);
  color: #ffc107;
  text-align: center;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  z-index: 1;
  top: 50%;
  left: 60px; /* show to the right of button */
  transform: translateY(-50%);
  transition: opacity 0.3s ease, left 0.3s ease;
}

.quick-access-btn:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  left: 40px; /* slight move on hover */
}

/* Optional: add a small arrow */
.quick-access-btn .tooltip-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent rgba(0, 0, 0, 0.85) transparent transparent;
}

/* Responsive layout for smaller screens */
@media (max-width: 1200px) {
  .quick-buttons {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto;
    gap: 10px;
  }

  /* Tooltip still shows on right */
  .quick-access-btn {
    position: relative;
  }

  .quick-access-btn .tooltip-text {
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
  }

  .quick-access-btn:hover .tooltip-text {
    left: 70px;
  }
}


@media (max-width: 767px) {
  .quick-buttons {
    display: none;
  }
}