/* Frituur signage - emaille-bord look: diepblauw, crème letters, amberkleurige prijzen */

:root {
  --enamel:      #10314F;
  --enamel-deep: #0A2036;
  --cream:       #F3E7CE;
  --cream-dim:   rgba(243, 231, 206, .55);
  --amber:       #F0A830;
  --rood:        #C6402F;
  --rule:        rgba(243, 231, 206, .18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Archivo, "Helvetica Neue", Arial, sans-serif;
  background: var(--enamel);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================ SCHERMEN === */

.screen {
  position: fixed;
  inset: 0;
  overflow: hidden;
  cursor: none;
  background:
    radial-gradient(120% 90% at 50% 0%, #16436B 0%, var(--enamel) 45%, var(--enamel-deep) 100%);
}

/* dunne emaille-rand, zoals een oud frituurbord */
.screen::after {
  content: "";
  position: absolute;
  inset: 1.6vh;
  border: 0.22vh solid var(--rule);
  border-radius: 0.6vh;
  pointer-events: none;
}

.board {
  position: absolute;
  inset: 4.4vh 5vw;
  display: flex;
  flex-direction: column;
  transform-origin: top center;
}

.board__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 1.4vh;
  border-bottom: 0.35vh solid var(--amber);
  margin-bottom: 3vh;
}

.board__title {
  margin: 0;
  font-size: 7.2vh;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.board__clock {
  font-size: 2.6vh;
  font-weight: 600;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
}

.groups { display: flex; flex-direction: column; gap: 4vh; }
.groups--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vh 5vw;
  align-content: start;
}

.group__name {
  font-size: 3vh;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin: 0 0 1.6vh;
}

.items { list-style: none; margin: 0; padding: 0; }

.item {
  display: flex;
  align-items: baseline;
  gap: 1.2vw;
  padding: .9vh 0;
  font-size: 4.4vh;
  font-weight: 600;
  line-height: 1.15;
}

.item__name { white-space: nowrap; }

.item__note {
  font-size: .5em;
  font-weight: 500;
  color: var(--cream-dim);
  margin-left: .5em;
  letter-spacing: .04em;
}

/* de stippellijn: het handtekeningelement van een echt menubord */
.item__leader {
  flex: 1;
  height: .9em;
  border-bottom: 0.35vh dotted rgba(243, 231, 206, .3);
  transform: translateY(-0.15em);
}

.item__price {
  font-weight: 800;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.item__price::before {
  content: "€ ";
  font-weight: 600;
  font-size: .62em;
  color: var(--cream-dim);
}

.board__foot {
  margin-top: auto;
  padding-top: 2vh;
  font-size: 1.9vh;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(243, 231, 206, .3);
}

/* ------------------------------------------------------------- nieuws --- */

.news {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.news__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 6vh 6vw;
}

/* fotolaag: vult het scherm, met een verloop zodat de tekst leesbaar blijft */
.news__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity .6s ease;
}

.news--photo .news__photo { opacity: 1; }
.news__photo--in { animation: photoIn .9s ease both; }

@keyframes photoIn {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: none; }
}

.news__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 32, 54, .97) 0%,
    rgba(10, 32, 54, .90) 32%,
    rgba(10, 32, 54, .55) 58%,
    rgba(10, 32, 54, .25) 100%);
}

/* met foto schuift de tekst naar onder, zodat het beeld ademruimte krijgt */
.news--photo .news__body { justify-content: flex-end; }
.news--photo .news__eyebrow { order: 2; margin: 3vh 0 0; }
.news--photo .news__headline { order: 0; }
.news--photo .news__summary { order: 1; }
.news--photo .news__count { order: 3; margin-top: 1.5vh; }

.news__eyebrow {
  display: flex;
  align-items: center;
  gap: 1.4vw;
  font-size: 2.2vh;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4vh;
}

.news__eyebrow span:last-child { color: var(--cream-dim); letter-spacing: .1em; }

.news__headline {
  font-size: 8vh;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 22ch;
}

.news__summary {
  margin-top: 3vh;
  font-size: 3.2vh;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream-dim);
  max-width: 46ch;
}

.news__fade { animation: rise .7s cubic-bezier(.2, .7, .3, 1) both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(2.5vh); }
  to   { opacity: 1; transform: none; }
}

.news__progress {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: .6vh;
  background: rgba(243, 231, 206, .12);
}

.news__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--amber);
}

.news__count {
  margin-top: auto;
  font-size: 2vh;
  letter-spacing: .18em;
  color: rgba(243, 231, 206, .35);
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .news__fade { animation: none; }
}

/* =============================================================== ADMIN === */

.admin {
  cursor: auto;
  background: #F7F4EC;
  color: #16232E;
  font-size: 16px;
  padding: 0 0 6rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--enamel);
  color: var(--cream);
}

.topbar strong { font-size: 1.05rem; letter-spacing: .02em; }
.topbar nav { margin-left: auto; display: flex; gap: 1rem; }
.topbar a { color: var(--cream); text-decoration: none; font-weight: 600; font-size: .92rem; }
.topbar a:hover, .topbar a:focus-visible { color: var(--amber); }

.wrap { max-width: 720px; margin: 0 auto; padding: 1.2rem 1rem; }

.flash {
  padding: .8rem 1rem;
  border-radius: .5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  background: #E3EFDF;
  color: #26492B;
}
.flash--error { background: #F6DED9; color: #7A2418; }

.cat { margin-bottom: 2rem; }

.cat h2 {
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6A7783;
  margin: 0 0 .6rem;
}

.row {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border: 1px solid #E2DDD0;
  border-radius: .6rem;
  padding: .7rem .8rem;
  margin-bottom: .45rem;
}

.row--off { opacity: .45; }
.row__name { flex: 1; font-weight: 600; }
.row__note { display: block; font-weight: 400; font-size: .8rem; color: #6A7783; }

.row input[type="text"] {
  width: 5.2rem;
  padding: .55rem .6rem;
  font: inherit;
  font-weight: 700;
  text-align: right;
  border: 1px solid #CFC8B8;
  border-radius: .4rem;
  background: #FCFAF4;
}

.row input:focus-visible,
.btn:focus-visible,
a:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.row input.saved { border-color: #3E8E4F; background: #EDF7EE; }

.btn {
  font: inherit;
  font-weight: 600;
  padding: .55rem .9rem;
  border-radius: .4rem;
  border: 1px solid transparent;
  background: var(--enamel);
  color: var(--cream);
  cursor: pointer;
}

.btn--ghost { background: transparent; color: #6A7783; border-color: #CFC8B8; }
.btn--danger { background: transparent; color: var(--rood); border-color: #E4C4BE; }

.card {
  background: #fff;
  border: 1px solid #E2DDD0;
  border-radius: .6rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.card h3 { margin: 0 0 .2rem; font-size: 1.05rem; }

.field { display: block; margin-bottom: .8rem; }
.field span { display: block; font-size: .8rem; font-weight: 600; color: #6A7783; margin-bottom: .3rem; }

.field input[type="text"],
.field input[type="number"],
.field input[type="password"],
.field select {
  width: 100%;
  padding: .6rem;
  font: inherit;
  border: 1px solid #CFC8B8;
  border-radius: .4rem;
  background: #FCFAF4;
}

.checks { display: flex; flex-wrap: wrap; gap: .5rem; }

.checks label {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  border: 1px solid #CFC8B8;
  border-radius: 2rem;
  font-size: .9rem;
}

.pill {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .5rem;
  border-radius: 2rem;
}
.pill--on  { background: #E3EFDF; color: #26492B; }
.pill--off { background: #EFE9DC; color: #7B7263; }

.url {
  display: block;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: .82rem;
  word-break: break-all;
  background: #F2EEE3;
  padding: .5rem .6rem;
  border-radius: .4rem;
  margin: .5rem 0 .8rem;
  color: #16232E;
}

/* -------------------------------------------------------------- stand-by --- */

.standby {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: #000;
  color: rgba(243, 231, 206, .22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5vh;
}

.standby[hidden] { display: none; }

.standby__clock {
  font-size: 11vh;
  font-weight: 300;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.standby__note {
  font-size: 2vh;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(243, 231, 206, .14);
}

/* ------------------------------------------------- admin: extra onderdelen --- */

.clientbar {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  padding: .6rem 1.1rem;
  background: #17394F;
  color: var(--cream-dim);
  font-size: .85rem;
}

.chip {
  padding: .25rem .7rem;
  border-radius: 2rem;
  border: 1px solid rgba(243, 231, 206, .25);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
}
.chip--on { background: var(--amber); color: #16232E; border-color: var(--amber); }

.lead { color: #6A7783; margin: 0 0 1.4rem; }
.hint { color: #6A7783; font-size: .87rem; margin: .2rem 0 .8rem; }
.empty { color: #6A7783; }

.section {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6A7783;
  margin: 1.8rem 0 .7rem;
}

.statebar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: .6rem;
  margin-bottom: 1.4rem;
  border: 1px solid;
}
.statebar div { display: flex; flex-direction: column; }
.statebar span { font-size: .85rem; opacity: .8; }
.statebar a { margin-left: auto; }
.statebar--on  { background: #E7F1E4; border-color: #C3DCBC; color: #26492B; }
.statebar--off { background: #EFE9DC; border-color: #DCD2BE; color: #5C5344; }

.statusrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: #fff;
  border: 1px solid #E2DDD0;
  border-radius: .6rem;
  padding: .8rem;
  margin-bottom: .45rem;
}
.statusrow__body { display: flex; flex-direction: column; }
.statusrow__meta { font-size: .82rem; color: #6A7783; }
.statusrow .pill { margin-left: auto; }

.dot {
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  flex: none;
  display: inline-block;
  background: #B7B0A2;
}
.dot--ok   { background: #3E8E4F; }
.dot--late { background: #D79A2B; }
.dot--dead { background: var(--rood); box-shadow: 0 0 0 4px rgba(198, 64, 47, .15); }
.dot--off  { background: #B7B0A2; }
.dot--new  { background: #8FA3B5; }

.pill--bad { background: #F6DED9; color: #7A2418; }

.note {
  padding: .9rem 1rem;
  border-radius: .6rem;
  margin: 1rem 0;
  font-size: .92rem;
}
.note--bad { background: #F6DED9; color: #7A2418; }

.day { margin-bottom: 1.2rem; }
.day h2 {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6A7783;
  margin: 0 0 .4rem;
}

.slot {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #E2DDD0;
  border-radius: .6rem;
  padding: .6rem .8rem;
  margin-bottom: .35rem;
}
.slot__time { font-weight: 600; font-variant-numeric: tabular-nums; }
.slot__time em { font-style: normal; color: #6A7783; font-weight: 400; font-size: .85em; }
.slot form { margin-left: auto; }
.slot--empty { color: #6A7783; background: transparent; border-style: dashed; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }

.check {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .2rem 0 1rem;
  font-size: .92rem;
}

.rowactions { display: flex; gap: .5rem; margin-top: .8rem; }

.userrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  padding: .5rem 0;
  border-top: 1px solid #EFEADF;
}
.userrow .inline { display: flex; gap: .4rem; margin-left: auto; }
.userrow input {
  padding: .45rem .6rem;
  font: inherit;
  border: 1px solid #CFC8B8;
  border-radius: .4rem;
  background: #FCFAF4;
  width: 11rem;
}

.card--login { margin-top: 3rem; }

.field input[type="time"] {
  width: 100%;
  padding: .6rem;
  font: inherit;
  border: 1px solid #CFC8B8;
  border-radius: .4rem;
  background: #FCFAF4;
}

/* ============================================================= WEERPANEEL === */

.weather {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 42%;
  z-index: 3;
  display: flex;
  align-items: stretch;
  gap: 3vw;
  padding: 4.5vh 5vw 3.5vh;
  border-bottom: .3vh solid rgba(240, 168, 48, .55);
  background:
    linear-gradient(160deg, #16436B 0%, #10314F 60%, #0D2942 100%);
}

/* vandaag: het grote blok links */
.weather__now {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 34%;
}

.weather__place {
  font-size: 2vh;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1vh;
}

.weather__nowline {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.weather__icon { color: var(--cream); display: block; }
.weather__icon svg { width: 100%; height: 100%; display: block; }
.weather__icon--big { width: 12vh; height: 12vh; color: var(--amber); }

.weather__temp {
  font-size: 13vh;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.045em;
  font-variant-numeric: tabular-nums;
}

.weather__deg { font-weight: 400; color: var(--cream-dim); }

.weather__label {
  font-size: 3vh;
  font-weight: 600;
  margin-top: 1.2vh;
}

.weather__range {
  display: flex;
  align-items: baseline;
  gap: 1.2vw;
  margin-top: .8vh;
  font-size: 2.4vh;
  font-variant-numeric: tabular-nums;
}

.weather__max { font-weight: 700; color: var(--cream); }
.weather__min { font-weight: 500; color: var(--cream-dim); }
.weather__rain {
  font-size: .8em;
  color: rgba(240, 168, 48, .85);
  letter-spacing: .04em;
}

/* de vier komende dagen */
.weather__days {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2vw;
}

.wday {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2vh;
  padding: 1.5vh .5vw;
  border-radius: 1.2vh;
  background: rgba(243, 231, 206, .06);
  border: 1px solid rgba(243, 231, 206, .1);
}

.wday__name {
  font-size: 2.1vh;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.wday__icon { width: 6vh; height: 6vh; color: var(--cream); }
.wday__icon svg { width: 100%; height: 100%; display: block; }

.wday__temps {
  display: flex;
  gap: .7vw;
  font-size: 2.6vh;
  font-variant-numeric: tabular-nums;
}

/* nieuws schuift onder het weerpaneel */
.news--split { top: 42%; }
.news--split .news__body { padding: 3.5vh 5vw; }
.news--split .news__headline { font-size: 5.6vh; max-width: 28ch; }
.news--split .news__summary { font-size: 2.4vh; margin-top: 1.6vh; max-width: 60ch; }
.news--split .news__eyebrow { font-size: 1.8vh; margin-bottom: 2vh; }
.news--split .news__count { font-size: 1.7vh; }

/* op een staand scherm krijgt het weer wat meer lucht */
@media (orientation: portrait) {
  .weather { height: 38%; flex-direction: column; gap: 2.5vh; }
  .weather__now { min-width: 0; }
  .news--split { top: 38%; }
}

/* ====================================================== EIGENAARSOVERZICHT === */

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.kpi {
  background: #fff;
  border: 1px solid #E2DDD0;
  border-radius: .6rem;
  padding: .8rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.kpi span { font-size: .75rem; color: #6A7783; letter-spacing: .06em; }
.kpi strong { font-size: 1.6rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.kpi--bad { background: #F6DED9; border-color: #E4C4BE; }
.kpi--bad strong { color: #7A2418; }

.toolbar {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.toolbar__spacer { flex: 1; }
.toolbar__days { display: flex; gap: .3rem; }

.toolbar input[type="search"] {
  flex: 1;
  min-width: 12rem;
  padding: .55rem .7rem;
  font: inherit;
  border: 1px solid #CFC8B8;
  border-radius: .4rem;
  background: #FCFAF4;
}

.check--inline { margin: 0; white-space: nowrap; font-size: .88rem; }

.chip--light {
  border-color: #CFC8B8;
  color: #16232E;
  font-size: .8rem;
  padding: .3rem .6rem;
}
.chip--light.chip--on { background: var(--enamel); color: var(--cream); border-color: var(--enamel); }

.client {
  background: #fff;
  border: 1px solid #E2DDD0;
  border-radius: .6rem;
  margin-bottom: .5rem;
  overflow: hidden;
}
.client[hidden] { display: none; }

.client__head {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  padding: .85rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.client__head::-webkit-details-marker { display: none; }
.client__head:hover { background: #FAF8F2; }
.client[open] .client__head { border-bottom: 1px solid #EFEADF; }

.client__name { font-weight: 600; font-size: 1.02rem; }
.client__count { font-size: .82rem; color: #6A7783; }

.uptime {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.uptime__bar {
  width: 5.5rem;
  height: .5rem;
  border-radius: 1rem;
  background: #EFEADF;
  overflow: hidden;
}
.uptime__bar i { display: block; height: 100%; background: #3E8E4F; }
.uptime__bar--low { background: #D79A2B; }
.uptime__pct {
  font-size: .85rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 3.2rem;
  text-align: right;
}

.client__body { padding: .3rem 1rem 1rem; }

.screenrow {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .65rem 0;
  border-bottom: 1px solid #F2EEE3;
}
.screenrow:last-of-type { border-bottom: 0; }
.screenrow .dot { margin-top: .35rem; }
.screenrow__main { display: flex; flex-direction: column; gap: .1rem; }
.screenrow__meta { font-size: .82rem; color: #6A7783; }
.screenrow__player {
  font-size: .76rem;
  color: #8A94A0;
  font-family: ui-monospace, Menlo, Consolas, monospace;
}
.screenrow__pct {
  margin-left: auto;
  font-size: .9rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.client__foot {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  padding-top: .8rem;
  border-top: 1px solid #EFEADF;
  margin-top: .4rem;
}
.client__foot .btn { margin-left: auto; }

@media (max-width: 560px) {
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .uptime { margin-left: 0; width: 100%; }
}

/* ------------------------------------------- klantenbeheer: extra blokken --- */

.sub {
  border-top: 1px solid #EFEADF;
  margin-top: 1rem;
  padding-top: .8rem;
}
.sub h4 {
  margin: 0 0 .4rem;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6A7783;
}

.mini { margin: .6rem 0; }
.mini > summary {
  cursor: pointer;
  font-size: .88rem;
  font-weight: 600;
  color: #6A7783;
  padding: .35rem 0;
  list-style: none;
}
.mini > summary::-webkit-details-marker { display: none; }
.mini > summary::before { content: "+ "; }
.mini[open] > summary::before { content: "– "; }
.mini > summary:hover { color: #16232E; }

.mini--danger > summary { color: var(--rood); }
.mini--danger[open] {
  background: #FDF6F4;
  border: 1px solid #E4C4BE;
  border-radius: .5rem;
  padding: .2rem .8rem .8rem;
}

/* ---------------------------------------------------------- contracten --- */

.contract {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  padding: .7rem .8rem;
  border-radius: .5rem;
  border: 1px solid #E2DDD0;
  background: #FAF8F2;
  margin-bottom: .5rem;
}
.contract__main { display: flex; flex-direction: column; }
.contract__meta { font-size: .82rem; color: #6A7783; }
.contract .pill { margin-left: auto; }
.contract--soon { background: #FDF5E7; border-color: #E8D5AE; }
.contract--expired { background: #FDF6F4; border-color: #E4C4BE; }

.pill--warn { background: #FAEEDA; color: #854F0B; }

.slot--past { opacity: .55; }

/* -------------------------------------------------- identify op het scherm --- */

.identify {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10vh;
  font-size: 9vh;
  font-weight: 800;
  line-height: 1.1;
  color: #10314F;
  background: var(--amber);
  animation: knipper 1s steps(2, end) infinite;
}

@keyframes knipper { 50% { opacity: .75; } }

/* ------------------------------------------------ miniaturen in het beheer --- */

.thumb {
  display: block;
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: .5rem;
  border: 1px solid #E2DDD0;
  background: #10314F;
  margin: .2rem 0 .3rem;
}

.thumb--small { max-width: 9rem; margin: 0; }

.thumbwrap { display: flex; flex-direction: column; gap: .1rem; }
.thumbwrap .hint { margin: 0 0 .6rem; }

.cmdbar {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .6rem 0 .2rem;
}
.cmdbar form { display: contents; }
.cmdbar .btn { font-size: .84rem; padding: .45rem .7rem; }

.preview {
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 16 / 9;
  border: 1px solid #E2DDD0;
  border-radius: .5rem;
  overflow: hidden;
  position: relative;
  background: #10314F;
}
.preview iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1920px;
  height: 1080px;
  border: 0;
  transform-origin: top left;
  pointer-events: none;
}

.cmdbar--device {
  align-items: center;
  padding-top: .4rem;
  border-top: 1px dashed #E2DDD0;
  margin-top: .2rem;
}

.agentpil {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #26492B;
  background: #E3EFDF;
  padding: .25rem .55rem;
  border-radius: 2rem;
}
