/* Collapsible fullbins styling */
.fullbins {
  background: #1f2226;
  border-right: 1px solid #2a2d31;
  padding: 12px;
  overflow-y: auto;
}

/* Collapsible bin sections (accordion on mobile) */
.fullbins section h3,
.fullbins-modal-content h4 {
  font-size: 15px;
  padding: 6px;
  background: #2a2d31;
  border-radius: 6px;
  margin-bottom: 4px;
  cursor: pointer;
}

.fullbins section ul,
.fullbins-modal-content ul {
  margin: 6px 0 12px;
  padding-left: 14px;
  list-style: none;
}

.fullbin-list {
  list-style: none;
  margin-bottom: 1rem;
}
.fullbin-list li {
  padding: 0.4rem;
  background: #3a3a3a;
  margin-bottom: 0.2rem;
  border-radius: 4px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fullbin-list li:hover {
  background: #4a4a4a;
}

.fullbins section h3 {
  margin: 0;
  padding: 10px 12px;
  background: #2a2d31;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.fullbins section h3::after {
  content: "▼";
  transition: transform 0.3s ease;
  font-size: 12px;
}

.fullbins section.collapsed h3::after {
  transform: rotate(-90deg);
}

.fullbins .fullbin-list {
  list-style: none;
  margin: 0;
  padding: 8px;
  max-height: 500px;
  overflow-y: auto;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.fullbins section.collapsed .fullbin-list {
  max-height: 0;
  padding: 0;
  overflow: hidden;
}
