#sidebar-buttons {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(145deg, rgba(25, 25, 40, 0.85), rgba(40, 40, 70, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 15px 10px;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

#sidebar-buttons::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  justify-content: center;
}

.sidebar-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.sidebar-btn:hover {
  background: rgba(0, 255, 255, 0.2);
}

