.bookmark-panel__header {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.bookmark-list__items {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bookmark-list__empty {
  color: var(--muted-color);
  margin: 0;
}

.bookmark {
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
}

.bookmark__time {
  background: var(--tenant-primary-color);
  border: 1px solid var(--tenant-primary-color);
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  text-decoration: none;
  white-space: nowrap;
}

.bookmark__note {
  flex: 1;
  min-width: 0;
}

.bookmark__note input {
  width: 100%;
}

.bookmark__delete {
  background: transparent;
  border: 0;
  color: var(--muted-color);
  cursor: pointer;
  padding: 0.25rem;
}

.bookmark__delete:hover {
  color: #b91c1c;
}
