/* Scope */
#t100-multi {
  font-family: inherit;
  color: inherit;
  background: transparent;
}

#t100-multi .wrap {
  max-width: 1000px;
  margin: 0;
  padding: 0;
}

/* Titel */
#t100-multi h3 {
  font: inherit;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  margin: 0 0 .75rem;
  font-size: 1.4rem;
  border-bottom: 2px solid #3b82f6;
  display: inline-block;
  padding-bottom: .25rem;
}

/* Bovenbalk met tabs + zoekveld */
#t100-multi .bar {
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 .5rem;
}

#t100-multi .tabs {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}

#t100-multi .tab {
  font: inherit;
  font-weight: 600;
  padding: .45rem .7rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  line-height: 1;
  transition: box-shadow .2s ease, border-color .2s ease;
}

#t100-multi .tab[aria-selected="true"] {
  border-color: #3b82f6;
  box-shadow: 0 0 0 .15rem rgba(59,130,246,.18);
}

#t100-multi .tab:focus-visible {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 .15rem rgba(59,130,246,.3);
}

#t100-multi .search {
  flex: 1 1 100%;
  min-width: 220px;
  width: 100%;
  box-sizing: border-box;
}

#t100-multi .search input {
  width: 100%;
  padding: .55rem .7rem .55rem 2rem;
  background: #fff;
  color: inherit;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  outline: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%236b7280" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M10 2a8 8 0 015.29 13.71l4 4a1 1 0 01-1.42 1.42l-4-4A8 8 0 1110 2zm0 2a6 6 0 100 12 6 6 0 000-12z"/></svg>');
  background-repeat: no-repeat;
  background-position: .6rem center;
  background-size: 1rem auto;
}

#t100-multi .search input:focus {
  border-color: #cbd5e1;
  box-shadow: 0 0 0 .15rem rgba(59,130,246,.15);
}

/* Tabelcontainer als subtiele kaart */
#t100-multi .tbl {
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

#t100-multi table {
  width: 100%;
  border-collapse: collapse;
  font: inherit;
  color: inherit;
  background: transparent;
}

#t100-multi thead th {
  text-align: left;
  font-weight: 600;
  padding: .6rem .7rem;
  border-bottom: 2px solid #e5e7eb;
  white-space: nowrap;
  background: #f8f9fa;
  color: #333;
}

#t100-multi tbody td {
  padding: .55rem .7rem;
  border-bottom: 1px solid #eef2f7;
  vertical-align: top;
}

#t100-multi tbody tr:hover td {
  background: rgba(30,144,255,.06);
}

#t100-multi .pos {
  width: 3.2rem;
  font-variant-numeric: tabular-nums;
}

#t100-multi .artist {
  opacity: .95;
}

/* Δ kleurcodes + centreren */
#t100-multi .delta {
  font-variant-numeric: tabular-nums;
  text-align: center;
  font-weight: 600;
}

#t100-multi .delta[data-delta^="+"] { color:#16a34a; } /* groen */
#t100-multi .delta[data-delta^="-"] { color:#dc2626; } /* rood */
#t100-multi .delta[data-delta="RE"] { color:#2e3192; } /* blauw */
#t100-multi .delta[data-delta="NW"] { color:#0ea5e9; } /* nieuw */
#t100-multi .delta[data-delta="="]  { color:#6b7280; } /* gelijk */

/* #1 "hero" highlight */
#t100-multi tr.top1 td {
  background:#2e3192;
  color:#fff;
  border-bottom:1px solid #1e40af;
}

#t100-multi tr.top1:hover td {
  background:#2e3192;
}

#t100-multi tr.top1 a {
  color:#fff;
}

#t100-multi tr.top1 .delta {
  color:#fff !important;
}

#t100-multi tr.top1 .pos {
  font-weight:800;
}

#t100-multi tr.top1 .title {
  font-weight:700;
}

#t100-multi .badge1 {
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
}

/* Footer */
#t100-multi .foot {
  display:flex;
  gap:.5rem;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-top:.6rem;
  opacity:.85;
}

#t100-multi .foot a {
  color:inherit;
  text-decoration:underline dotted;
  text-underline-offset:2px;
}

/* Fade-in / slide-up animatie */
#t100-multi .reveal {
  opacity:0;
  transform:translateY(8px);
}

#t100-multi .reveal.in {
  opacity:1;
  transform:none;
  transition:opacity .35s ease, transform .35s ease;
}

@media (prefers-reduced-motion: reduce){
  #t100-multi *{transition:none !important;}
  #t100-multi .reveal,
  #t100-multi .reveal.in{
    opacity:1;
    transform:none;
  }
}