.floating-sidebar {
  position: fixed;
  top: 20px;
  z-index: 9999;
  max-width: 320px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.floating-left {
  left: 20px;
}

.floating-right {
  right: 20px;
}

/* Hide on mobile & tablets */
@media (max-width: 991px) {
  .floating-sidebar {
    display: none !important;
  }
}
