.dustbin-trigger {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  cursor: pointer;
  z-index: 1000;
}
.dustbin-trigger .icon {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}
.dustbin-modal {
  position: fixed;
  bottom: 4rem;
  left: 1rem;
  width: 20rem;
  max-height: 70vh;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: .5rem;
  padding: 1rem;
  z-index: 1001;
}
.dustbin-modal.hidden { display: none; }
/* modal backdrop/content if you’d prefer centered */
.modal-backdrop {
  background: rgba(0,0,0,.4);
  position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index:1000;
}
.modal-content {
  background: white; padding: 1rem; border-radius:.5rem; width: 90%; max-width:30rem;
}
.dustbin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  border-bottom: 1px solid #eee;
}
.dustbin-item:last-child {
  border-bottom: none;
}
.dustbin-item .name {
  flex-grow: 1;
  margin-right: 1rem;
}
.dustbin-item .actions {
  display: flex;
  gap: .5rem;
}
.dustbin-item .actions button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #007bff;
}
