.dp-results-card .table {
	background: none;
}
.dp-results-card .table.is-striped tbody tr:not(.is-selected):nth-child(2n) {
  background-color: #5f0f4047;
}
.dp-results-card .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(2n) {
  background-color: var(--accent-color2) !important;
}
.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
  background-color: var(--accent-color) !important;
}
.dp-list {
  list-style: decimal;
  min-height: 2rem;
  padding: .5rem .75rem;
  background: var(--box-color);
  border: 1px solid #ddd;
  border-radius: var(--radius);
}
.dp-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .5rem;
  margin: .25rem 0;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: #9B9393C2;
  touch-action: pan-y;   
}
.dp-handle {
  cursor: grab;
  user-select: none;
  touch-action: none;               /* dit element start de drag op mobiel */
  font-weight: 600;
  width: 1.75rem; 
  flex: 0 0 1.75rem; 
  text-align: center;
}
.dp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.dp-col h3 { margin: .25rem 0 .5rem; }
.dp-handle { font-weight:600; opacity:.6; }
.dp-empty { color:#666; font-style:italic; list-style:none; }
.dp-hint {
  margin: .5rem 0 0;
  color: var(--text-color);
  font-size: 1.3rem;
  padding: 6px 0 16px 0;
}
/* Nummering alleen in de rechterlijst */
.dp-list--numbered {
  counter-reset: dp;
}
.dp-list--numbered .dp-item {
  counter-increment: dp;
  display: flex;              /* mooi uitlijnen */
  align-items: center;
}
.dp-list--numbered .dp-item::before {
  content: counter(dp) ". ";
  font-weight: 600;
  margin-right: .5rem;
  min-width: 2ch;             /* houdt kolom strak uitgelijnd */
  text-align: right;
}
#dp-target {
  min-height: 85%;
}
.dp-col {
  height: 100%;
}
#dp-source {
  height: 490px;
  scroll-behavior: smooth;
  overflow-y: auto;
}
.dp-inline {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 5px;
}
.dp-inline label {
    display: none;
}
.dp-inline .button {
    height: 45px;
    margin: 4px 0px 0 5px;
}
.dp-search.form-item {
  margin-bottom: 8px;
}
input::placeholder {
    color: var(--text-color);
}