/* sidebar-menu.css — Styles for the fixed vertical sidebar navigation menu */

/* Styles the sidebar menu container, fixed to the left below the header */
.button-stack {
  position: fixed;
  top: 110px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

/* Sidebar buttons: glassy, rounded, with left-aligned text */
.button-stack button {
  width: 180px;
  padding: 12px;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s;
}

/* Hover effect for sidebar buttons */
.button-stack button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #1a66e0;
  color: #b8e1ff;
}
