#picks-bubble {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  background-color: var(--accent-blue, #197BFF);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 5px rgba(25, 123, 255, 0.3);
}

#picks-bubble:hover,
#picks-bubble:focus {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(25, 123, 255, 0.5);
}

#picks-bubble.clicked {
  animation: bubble-pop 0.3s ease;
}

@keyframes bubble-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

#picks-drawer {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  background-color: var(--card-bg, #161B22);
  border: 1px solid var(--border-color-subtle, #30363D);
  border-radius: 8px;
  padding: 1rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1050;
}

#picks-drawer.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#picks-drawer .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

#picks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#picks-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border-color-subtle, #30363D);
}

.remove-pick-btn {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 1rem;
}

.add-pick-btn {
  background: var(--accent-blue, #197BFF);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 4px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(25, 123, 255, 0.3);
}

.add-pick-btn:hover {
  background: #FFFFFF;
  color: #0D1117;
  box-shadow: 0 0 8px rgba(25, 123, 255, 0.5);
  transform: scale(1.05);
}

/* compact add button for tables */
.add-pick-btn.plus-btn {
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 0.85rem;
  line-height: 1;
  border-radius: 50%;
  margin: 0 6px 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* slightly smaller view button for table rows */
.view-btn.compact-view {
  padding: 0.35rem 0.6rem;
  font-size: 0.75rem;
}

#close-drawer {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}