/* ======================================
   Lynko.tv - Unified polished stylesheet
   Matches ToS/GDPR visual style
   ====================================== */

/* 0) Fonts */
@font-face {
  font-family: 'Roboto';
  src: url('https://lynko.tv/fonts/roboto/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('https://lynko.tv/fonts/roboto/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('https://lynko.tv/fonts/roboto/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('https://lynko.tv/fonts/roboto/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Roboto';
  src: url('https://lynko.tv/fonts/roboto/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

/* 1) Theme tokens */
:root{
  /* Base palette */
  --baby-green:#d9f7e3;
  --baby-lime:#e9ffd6;
  --lemon:#fff6b3;
  --ink:#111;
  --soft-gray:#EFF7F2;
  --mid-gray:#d8dde3;
  --accent:#9be2a8;     /* soft green secondary */
  --accent-2:#ffd24d;   /* lemon primary */
  --btn-text:#0b1b10;
  --focus:#3b82f6;
  --footer-safe: calc(var(--footer-h) + 20px + env(safe-area-inset-bottom));
  
  /* Layout sizes */
  --menu-h: 64px;
  --footer-h: 56px;

  /* Surfaces */
  --panel-bg:#F5FBF7;
  --panel-border:#E2EFE6;

  /* Inputs */
  --input-border: #cbd3df;
  --input-border-strong: #9aa6b2;
  --input-edge: #b6c2d0;
  --input-edge-hover: #9aa6b2;
  --input-ring: var(--focus);

  /* Shared aliases for polished components */
  --lk-accent: var(--accent-2);
  --lk-accent-weak: var(--accent);
  --lk-panel: var(--panel-bg);
  --lk-panel-dark: rgba(20,20,25,.85);
  --lk-text: var(--ink);
  --lk-text-dark: #e8eaee;
  --lk-muted: #5e6a75;
  --lk-border: var(--panel-border);
}
@supports (color: color-mix(in srgb, #000, #fff)) {
  :root{
    --input-border: color-mix(in srgb, var(--mid-gray) 85%, #000 15%);
    --input-border-strong: color-mix(in srgb, var(--mid-gray) 70%, #000 30%);
  }
}
/*
@media (prefers-color-scheme: dark){
  :root{ color-scheme: dark; }
}
*/

/* 2) Base reset-ish */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font: 16px/1.5 'Roboto', system-ui, -apple-system, Segoe UI, Ubuntu, Cantarell, Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--soft-gray);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow: hidden; /* we scroll the main container, not body */
}
body.no-scroll { overflow: hidden; }
a, a:link, a:visited, a:hover, a:focus, a:active { text-decoration: none; color: inherit; }
a:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }

/* 3) Layout shell - viewport grid: header | main scroller | footer */
.site-wrap{
  /* lock the app to the visible viewport height */
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;                    /* only main scrolls */
}
@supports (height: 100svh){
  .site-wrap{ height: 100svh; }        /* better on mobile toolbars */
}

/* Header sits in the top row - no need for sticky or fixed here */
.header{ position: relative; z-index: 1; }

/* Main is the only scroller */
.main, main.content{
  position: relative;                   /* remove absolute */
  inset: auto;
  overflow: auto;                       /* scroll here */
  -webkit-overflow-scrolling: touch;
  min-height: 0;                        /* allow the grid track to shrink */
  padding: 16px 0 16px;
}
.main-inner{ 
  max-width:960px; margin:0 auto; padding:20px 16px 48px; 
  padding-bottom: max(48px, var(--footer-safe));
}

/* Footer stays visible in the bottom row and can wrap to 2+ lines */
footer.footer{
  position: relative;                   /* not fixed */
  z-index: 1;
  border-top:1px solid var(--mid-gray);
  background: linear-gradient(0deg, var(--baby-green), var(--baby-lime));
}
.footer-inner{
  max-width:1100px; margin:0 auto; width:100%;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  font-size:14px; flex-wrap:wrap; text-align:center;
}
.footer-links{ flex:1; min-width:200px; }
.footer-cta{ flex-shrink:0; }

/* Mobile spacing tweaks only (no layout overrides needed) */
@media (max-width: 600px){
  .footer-inner{ flex-direction:column; gap:8px; font-size:13px; padding-bottom:12px; }
  .footer-links{ order:2; line-height:1.4; }
  .footer-cta{ order:1; }
}

@media (max-width: 400px){
  :root{ --footer-safe: calc(var(--footer-h) + 28px + env(safe-area-inset-bottom)); }
}

/* Header */
.header{
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(0deg,#eaf9f0,#dcf6e6);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  border-bottom: 1px solid var(--mid-gray);
  backdrop-filter: saturate(1.2) blur(4px);
}
.header-inner{
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 10px 16px;
}
.brand{ display:flex; align-items:center; gap:12px; color:inherit; }
.brand img{ height:42px; width:auto; display:block; }
.brand .title{ font-weight:700; letter-spacing:.2px; font-size:18px; }
.nav{ margin-left:auto; display:flex; align-items:center; gap:10px; }

/* Nav menu */
.menu{ display:flex; gap:4px; list-style:none; margin:0; padding:0; }
.menu > li{ position:relative; }
.menu > li.right > .dropdown{ left:auto; right:0; }

/* Links and trigger */
.menu > li > a,
.menu > li > button.menu-trigger{
  appearance:none; background:transparent; border:0;
  font:inherit; color:inherit; line-height:1;
  cursor:pointer; display:inline-flex; align-items:center; gap:6px;
  font-weight:600; padding:10px 12px; border-radius:10px;
  transition: transform .06s ease, background .15s ease, box-shadow .15s ease;
}
.menu > li > a:hover,
.menu > li > button.menu-trigger:hover{ background: var(--lemon); }
.menu > li > a:active,
.menu > li > button.menu-trigger:active{ transform: translateY(1px); }
.menu > li > a:focus-visible,
.menu > li > button.menu-trigger:focus-visible{ outline:none; box-shadow:0 0 0 3px rgba(59,130,246,.28); }

/* ================================= LANGUAGE ================================ */


/* positie & spacing in de rij */
#mainMenu > li.lang{
  position:relative;
  margin-right:12px;       
}

/* pill */
#mainMenu > li.lang .lang-btn{
  display:inline-flex; align-items:center; gap:.45rem;
  min-height:36px; padding:0 .85rem; border-radius:9999px;
  font-size:.95rem; font-weight:600; line-height:1;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:
    0 1px 2px rgba(0,0,0,.05),
    inset 0 1px 0 rgba(255,255,255,.7);
  backdrop-filter:saturate(160%) blur(6px);
  transition:background .2s ease, transform .06s ease, box-shadow .2s ease;
  cursor:pointer;
}
#mainMenu > li.lang .lang-btn:hover{ transform:translateY(-1px); }
#mainMenu > li.lang .lang-btn:focus-visible{
  outline:0;
  box-shadow:
    0 0 0 2px rgba(0,0,0,.10),
    0 0 0 4px rgba(60,190,110,.25); /* subtiele lime ring */
}
#mainMenu > li.lang .lang-btn .flag{ font-size:1.05em; }
#mainMenu > li.lang .lang-btn .abbr{ letter-spacing:.02em; }

/* caret */
#mainMenu > li.lang .lang-btn::after{
  content:'▾'; font-size:.8em; margin-left:.15rem; opacity:.7; transition:transform .15s ease;
}
#mainMenu > li.lang.open .lang-btn::after{ transform:rotate(180deg); }

/* open-state iets solider */
#mainMenu > li.lang.open .lang-btn{
  background:rgba(255,255,255,.92);
  border-color:rgba(0,0,0,.10);
  box-shadow:
    0 6px 18px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* dropdown-pane */
#mainMenu > li.lang .dropdown{
  display:none; position:absolute; right:0; top:calc(100% + .55rem);
  min-width:200px; padding:.35rem;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.12), 0 1px 0 rgba(255,255,255,.8) inset;
  z-index:50;
}
#mainMenu > li.lang.open > .dropdown{ display:block; }

/* dropdown-items */
#mainMenu > li.lang .lang-dropdown a{
  display:flex; align-items:center; gap:.6rem;
  padding:.6rem .9rem; border-radius:.55rem;
  font-weight:600; text-decoration:none;
  color:inherit;
}
#mainMenu > li.lang .lang-dropdown a:hover{
  background:rgba(0,0,0,.04);
}
#mainMenu > li.lang .lang-dropdown a.active{
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
  position:relative;
}
#mainMenu > li.lang .lang-dropdown a.active::before{
  content:'✓'; position:absolute; right:.7rem; opacity:.85;
}

/* mobiel: full-width, geen pane-schaduw */
@media (max-width:800px){
  #mainMenu > li.lang{ margin: .25rem 0; }
  #mainMenu > li.lang .lang-btn{ width:100%; justify-content:center; }
  #mainMenu > li.lang .dropdown{
    position:static; min-width:auto; padding:.25rem 0;
    border:0; border-radius:10px; box-shadow:none; background:transparent;
  }
  #mainMenu > li.lang .lang-dropdown a{ padding:.65rem; }
}




/* Chevron */
.menu > li > button.menu-trigger::after{
  content:"▾"; font-weight:600; transform-origin:center; transition: transform .15s ease;
}
.menu li.open > button.menu-trigger::after{ transform: rotate(180deg); }

/* Dropdown */
.dropdown{
  position:absolute; top: calc(100% + 6px); left: 0;
  min-width: 200px; padding: 8px;
  background: #fff; border: 1px solid var(--mid-gray);
  border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display: none;
}
.menu li.open > .dropdown{ display:block; }
.dropdown a{
  display:block; padding:10px; border-radius:8px; color:inherit; text-decoration:none; font-weight:600;
}
.dropdown a:hover{ background: var(--baby-lime); }
.dropdown .menu-sep{
  height: 1px; margin: 6px 8px;
  background: linear-gradient(90deg, transparent, var(--mid-gray), transparent); opacity: .9;
}
.dropdown .menu-label{
  display:block; padding:6px 10px 2px; font-size:12px; letter-spacing:.06em; color:#64748b; text-transform:uppercase;
}
.menu > li.sep{
  width:1px; height:18px; background:rgba(0,0,0,.18);
  align-self:center; margin:0 8px; border-radius:1px;
}

/* Mobile menu */
#menuBackdrop{ position: fixed; inset: 0; background: rgba(0,0,0,.2); display: none; z-index: 999; }
#menuBackdrop.show{ display:block; }
@media (max-width: 800px){
  .menu{
    position: fixed; left: 12px; right: 12px;
    max-height: calc(100vh - 96px);
    overflow: auto; flex-direction: column; gap: 6px; padding: 10px;
    background:#fff; border:1px solid var(--mid-gray); border-radius:14px;
    box-shadow:0 14px 36px rgba(0,0,0,.12);
    display: none; z-index: 1000;
  }
  .menu.show{ display:flex; }
  .header-inner{ position: relative; }
  #mobileToggle{ position: absolute; right: 12px; top: 8px; z-index: 1001; }
  .menu li.open > .dropdown{ position: static; display: block; box-shadow: none; border: 0; padding: 4px 0; background: transparent; min-width: 0; }
  .dropdown a{ padding:10px 12px; }
  .menu > li.sep{ display:none; }
}
.menu > li.right{ margin-left:auto; }

/* Main and footer */
.main{ flex:1; }
.main-inner{ max-width:960px; margin:0 auto; padding: 0px 0px 16px; }
main.content,
.main{
  position: absolute;
  top: var(--menu-h);
  left: 0; right: 0;
  bottom: var(--footer-h); /* safe gap for fixed footer */
  overflow: auto;
  padding: 16px 0 16px;
  min-height: 0;
}

/* Fixed footer on wider screens */
footer.footer{
  position: fixed; left: 0; right: 0; bottom: 0;
  min-height: var(--footer-h);
  z-index: 900;
  display:flex; align-items:center;
  border-top:1px solid var(--mid-gray);
  background: linear-gradient(0deg, var(--baby-green), var(--baby-lime));
}


/* Reserve space so content doesn't sit under the fixed footer */
body{
  padding-bottom: calc(var(--footer-h) + env(safe-area-inset-bottom));
}

/* Inner */
.footer-inner{
  max-width:1100px; margin:0 auto; width:100%;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  font-size:14px; flex-wrap:wrap; text-align:center;
}
.footer-links{ flex:1; min-width:200px; }
.footer-cta{ flex-shrink:0; }

/* Phones - return footer to normal flow so it can't jump upward */
@media (max-width: 600px){
  footer.footer{
    position: static;         /* no sticky */
    min-height: auto;
  }
  body{ padding-bottom: 0; }  /* no overlay spacing needed */
  .footer-inner{ flex-direction:column; gap:8px; font-size:13px; padding-bottom:12px; }
  .footer-links{ order:2; line-height:1.4; }
  .footer-cta{ order:1; }
}


/* Mobile layout fix: let main be in normal flow and keep footer at bottom */
@media (max-width: 600px){
  /* allow the page to scroll */
  body{
    overflow: auto;                 /* was hidden */
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;              /* no fixed-footer compensation */
  }

  /* return main to normal flow so it creates space for the footer */
  .main, main.content{
    position: static;               /* undo absolute */
    top: auto; right: auto; bottom: auto; left: auto;
    overflow: visible;              /* or auto if you prefer */
    min-height: auto;
    padding: 16px;                  /* keep some breathing room */
  }

  /* footer lives in the flow and sticks to bottom when content is short */
  footer.footer{
    position: static;               /* not fixed on phones */
    margin-top: auto;               /* push to bottom in the flex column */
    min-height: auto;
  }

  /* your existing footer inner tweaks are fine */
  .footer-inner{ flex-direction: column; gap: 8px; font-size: 13px; padding-bottom: 12px; }
  .footer-links{ order: 2; line-height: 1.4; }
  .footer-cta{ order: 1; }
}







/* NEW MENU ---------------------------------------------------------------------------------------- */
/* === Lynko.tv Menu (final, consolidated) =================================== */

/* Mobile helper for the toggle button */
.only-mobile { display: none; }
@media (max-width: 800px){ .only-mobile{ display:inline-flex; align-items:center; } }

/* Trigger with avatar */
.acc-trigger { display:inline-flex; align-items:center; gap:8px; }
.acc-avatar  { width:24px; height:24px; border-radius:50%; object-fit:cover; border:1px solid var(--mid-gray); }
.acc-avatar.lg { width:36px; height:36px; }
.acc-label   { font-weight:700; }

/* Dropdown (desktop) */
.dropdown{
  position:absolute; top:calc(100% + 6px); left:0;
  width:auto; min-width:260px; max-width:360px;
  max-height:60vh; overflow:auto;
  padding:6px; background:#fff; border:1px solid var(--mid-gray);
  border-radius:12px; box-shadow:0 10px 28px rgba(0,0,0,.08);
  display:none; z-index:1002;
}
.menu li.open > .dropdown{ display:block; }
.menu > li.right > .dropdown{ left:auto; right:0; }

/* Items (full-row clickable, tight) */
.drop-grid{ display:block; }
.drop-grid a{
  display:flex; align-items:center; justify-content:space-between;
  width:100%; padding:12px 14px; border-radius:8px;
  white-space:nowrap; line-height:1.25;
  color:inherit; text-decoration:none; font-weight:600;
}
.drop-grid a + a{ border-top:1px solid color-mix(in srgb, var(--mid-gray) 60%, #fff 40%); }
.drop-grid a:hover{ background: var(--baby-lime); }

/* Optional visual separator block (if present in markup) */
.dropdown .menu-sep{
  height:1px; margin:8px 6px;
  background:linear-gradient(90deg, transparent, var(--mid-gray), transparent);
  opacity:.9;
}

/* Account panel details */
.account-panel{ min-width:260px; }
.account-panel .account-head{ display:flex; align-items:center; gap:10px; padding:2px 6px 8px; }
.account-panel .acc-name{ font-weight:800; }
.account-panel .account-links a{ padding:10px 8px; }
.account-panel .logout-form{ padding:4px 6px; }
.account-panel .logout-link{
  appearance:none; background:transparent; border:0; padding:8px;
  font-weight:700; color:#b42318; border-radius:8px; cursor:pointer;
}
.account-panel .logout-link:hover{ background:#fee4e2; }

/* Mobile sheet */
@media (max-width: 800px){
  .menu{
    position:fixed; left:12px; right:12px;
    max-height:calc(100vh - 96px);
    overflow:auto; display:none; z-index:1000;
    background:transparent; border:0; box-shadow:none; padding:0; gap:10px;
    flex-direction:column;
  }
  .menu.show{ display:flex; }
  .menu > li.right{ margin-left:0; }         /* stop pushing to the edge */
  .menu > li{
    width:100%; background:#fff; border:1px solid var(--mid-gray);
    border-radius:14px; overflow:hidden;
  }
  .menu > li > a,
  .menu > li > button.menu-trigger{
    width:100%; justify-content:space-between; padding:12px 14px;
  }
  .menu li.open > .dropdown{
    position:static; display:block; border:0; box-shadow:none; background:transparent;
    width:100%; max-width:none; max-height:none; padding:0 6px 8px;
  }
  .drop-grid{ display:block; }
  .drop-grid a{ padding:12px 12px; }
  .drop-grid a + a{ border-top:1px solid color-mix(in srgb, var(--mid-gray) 65%, #fff 35%); }
}


/*==================================================================================*/


/* 4) Text bubble - polished shared component (ToS/GDPR) */
.text-bubble {
  --accent: var(--lk-accent);
  --bg: var(--lk-panel);
  --bg-dark: var(--lk-panel-dark);
  --text: var(--lk-text);
  --muted: var(--lk-muted);
  --border: var(--lk-border);
  --ring: color-mix(in oklab, var(--accent) 60%, black 0%);
  position: relative;
  max-width: 900px;
  margin: 12px auto;
  padding: 22px 24px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  backdrop-filter: blur(6px);
}

.text-bubble h1, .text-bubble h2{
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: 0.2px;
}
.text-bubble .muted{ color: var(--muted); font-size: .92rem; margin: 4px 0 18px; }
.text-bubble h3{
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  margin: 22px 0 8px;
  padding-left: 12px;
  border-left: 4px solid color-mix(in oklab, var(--lk-accent) 85%, transparent);
}
.text-bubble p{ margin: 8px 0 10px; line-height: 1.55; }
.text-bubble ul{ margin: 8px 0 14px 1.15em; padding:0; }
.text-bubble li{ margin: 6px 0; }
.text-bubble li ul{ margin-top: 6px; }

/* Links inside bubbles */
.text-bubble a{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed color-mix(in oklab, var(--lk-accent) 60%, currentColor 40%);
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.text-bubble a:hover,
.text-bubble a:focus-visible{
  color: color-mix(in oklab, var(--lk-accent) 60%, currentColor 40%);
  border-bottom-color: currentColor;
  outline: none;
}

/* Accent rule */
.text-bubble hr.lemon{
  height: 3px; border: 0; border-radius: 3px;
  background: linear-gradient(90deg, var(--lk-accent) 0%, color-mix(in oklab, var(--lk-accent) 50%, transparent) 50%, transparent 100%);
  margin: 10px 0 18px;
}
/* Subtle hr */
.text-bubble hr{
  border: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--lk-border), transparent);
  margin: 18px 0;
}
/* Anchor focus flash */
.text-bubble :target{
  scroll-margin-top: 90px;
  animation: lkFlash 900ms ease-out 1;
}
@keyframes lkFlash{
  0% { background: color-mix(in oklab, var(--lk-accent) 18%, transparent); }
  100% { background: transparent; }
}

/* 5) Buttons - unified */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid color-mix(in oklab, var(--lk-accent) 60%, #000 0%);
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--lk-accent) 12%, #fff 88%),
    color-mix(in oklab, var(--lk-accent) 20%, #fff 80%)
  );
  color: #1b1b1b;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0,0,0,.06), 0 8px 16px rgba(0,0,0,.06) inset;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease, filter .15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 3px 0 rgba(0,0,0,.08), 0 10px 18px rgba(0,0,0,.08) inset; filter: saturate(1.05); }
.btn:active{ transform: translateY(0); }
.btn:focus-visible{ outline: 2px solid color-mix(in oklab, var(--lk-accent) 50%, #000 0%); outline-offset: 2px; }
.btn.lemon{
  border-color: var(--accent-2);
  background: linear-gradient(180deg, var(--accent-2), #fff1a6);
  box-shadow: 0 10px 28px rgba(255,210,77,.25);
}
.btn.ghost{ background:#fff; border:1px solid #e5e7eb; }
.btn.ghost:hover{ background:#f8fafc; }
.btn.danger{ background:#ef4444; color:#fff; border:0; }
.btn.danger:hover{ filter:brightness(.96); }
.btn.tiny{ font-size:.82rem; border-radius:10px; height:28px; padding:0 10px; }
.btn-full{ width:100%; }

/* 6) Forms and inputs */
.input,
input:not([type]),
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea{
  width:100%; padding:10px 12px; border-radius:12px;
  border:1px solid var(--input-edge); background:#fff; color:var(--ink);
  outline:none; transition: border .15s ease, box-shadow .15s ease;
  box-shadow: 0 0 0 1px rgba(17,24,39,.07), inset 0 1px 0 rgba(0,0,0,.04);
}
.input:hover,
input:not([type]):hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover,
input[type="number"]:hover,
select:hover,
textarea:hover{
  border-color: var(--input-edge-hover);
}
.input:focus,
input:not([type]):focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus{
  border-color: var(--input-ring);
  box-shadow: 0 0 0 1px rgba(17,24,39,.07), 0 0 0 1px rgba(59,130,246,.22);
}
textarea{ min-height:110px; resize: vertical; }
@media (prefers-contrast: more){
  .input,
  input:not([type]),
  input[type="text"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="password"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea{ border-width:2px; }
}

/* Form layouts */
.auth-card{ padding:28px; }
.card-head h1{ margin:0 0 6px; font-size:clamp(24px,3.2vw,32px); }
.card-head .sub{ margin:0 0 16px; color:#4b5563; }
.form-grid{ display:grid; gap:14px; }
.field label{ display:flex; justify-content:space-between; align-items:flex-end; font-weight:700; margin:0 0 6px; }
.hint{ font-weight:600; color:#6b7280; font-size:.92rem; }
.input-row{ display:flex; gap:8px; align-items:center; }
.icon-btn{
  border:1px solid var(--mid-gray); background:#fff; border-radius:10px; padding:8px 10px; line-height:1; cursor:pointer;
}
.icon-btn:focus-visible{ outline:none; box-shadow:0 0 0 3px rgba(59,130,246,.28); }
.agree{ font-size:.9rem; color:#475569; margin:10px 0 0; }

/* Notices */
.notice{
  border:1px solid; border-radius:12px; padding:10px 12px; margin:10px 0 16px;
}
.notice.success{ background:#f0fdf4; border-color:#86efac; }
.notice.error{ background:#fff1f1; border-color:#fca5a5; }
.notice.error ul{ margin:0; padding-left:18px; }
.text-bubble .notice ul li::before{ content:none; }
.text-bubble .notice.error ul li{ position:relative; padding-left:28px; }
.text-bubble .notice.error ul li::before{ content:"✖"; position:absolute; left:0; top:0; color:#dc2626; font-weight:900; }
.text-bubble .notice.success ul li::before{ content:"✔"; position:absolute; left:0; top:0; color:#16a34a; font-weight:900; }

/* 7) Utilities */
.container{ max-width:1100px; margin:0 auto; padding:0 16px; }
.hide-on-mobile{ display:block; }
.only-mobile{ display:none; }
@media (max-width: 800px){
  .hide-on-mobile{ display:none; }
  .only-mobile{ display:inline-flex; }
}

/* Link utilities */
.link-plain{
  color: inherit; text-decoration: none; background: transparent; border: 0; padding: 0; font-weight: inherit;
}
.link-plain:hover,
.link-plain:active,
.link-plain:focus,
.link-plain:focus-visible{
  color: inherit; text-decoration: none; background: transparent; box-shadow: none; transform: none; outline: 0;
}

/* 8) Shortlink page (namespaced) */
.lk-sl-card{
  padding:32px 28px;
  background: linear-gradient(180deg,#f7fbf9,#f2f9f5);
  border:1px solid var(--panel-border);
  border-radius:16px;
  box-shadow:0 12px 40px rgba(0,0,0,.06);
}
.lk-sl-head h1{ font-size: clamp(26px,3.4vw,36px); margin:0 0 6px; }
.lk-sl-head .lk-sl-sub{ color:#5b6b74; margin:0 0 12px; }
.lk-sl-rules{ display:grid; gap:14px; margin:12px 0 18px; grid-template-columns:1fr; }
.lk-sl-rule{
  background:#fff; border:1px solid var(--mid-gray);
  border-radius:14px; padding:14px 16px; box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.lk-sl-rule strong{ display:flex; align-items:center; gap:8px; margin-bottom:6px; }
.lk-sl-rule strong::before{ content:""; width:10px; height:10px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 2px rgba(155,226,168,.35); }
.lk-sl-rule:nth-child(2) strong::before{ background:#ffd24d; }
.lk-sl-rule:nth-child(3) strong::before{ background:#34c759; }
.lk-sl-tag{
  display:inline-block; margin-left:8px; padding:2px 8px;
  background: var(--lemon); border:1px solid var(--accent-2);
  border-radius:999px; font-size:.75rem; font-weight:800; color:#0b1b10;
}
.lk-sl-field{ margin-bottom:14px; }
.lk-sl-labelrow{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin:0 0 6px; }
.lk-sl-meta{ font-size:.9rem; color:#64748b; }
.lk-sl-inputgroup{
  display:flex; align-items:center;
  border:1px solid var(--mid-gray); border-radius:14px; background:#fff;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.02);
}
.lk-sl-prefix{
  padding:10px 12px; border-right:1px dashed var(--mid-gray);
  border-radius:14px 0 0 14px; background:#f3f7f4; color:#475569;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace; white-space:nowrap;
}
.lk-sl-inputgroup input{ border:0; outline:0; width:100%; padding:10px 12px; background:transparent; }
.lk-sl-field.lk-sl-locked .input,
.lk-sl-field.lk-sl-locked .lk-sl-inputgroup{ background:#f1f5f9; }
.lk-sl-field.lk-sl-locked .input{ color:#94a3b8; border-style:dashed; }
.lk-sl-field.lk-sl-locked .lk-sl-prefix{ opacity:.6; }
.lk-sl-badge{
  display:inline-block; padding:2px 10px; border-radius:999px;
  background:var(--lemon); border:1px solid var(--accent-2);
  font-weight:800; font-size:.75rem; color:#0b1b10;
}
.lk-sl-preview{
  margin-top:6px; padding:8px 10px; background:#fff;
  border:1px dashed var(--mid-gray); border-radius:10px; color:#334155;
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
}
.lk-sl-muted{ color:#64748b; }
.lk-sl-smallprint{ font-size:.92rem; margin-top:12px; }
.lk-sl-btnfull{ width:100%; }
.btn.lemon.lk-sl-btn{ box-shadow:0 10px 28px rgba(255,210,77,.25); }
.btn.lemon.lk-sl-btn:hover{ filter:saturate(1.08); transform:translateY(-1px); }
.btn.lemon.lk-sl-btn:active{ transform:translateY(0); }
@media (min-width: 820px){
  .lk-sl-rules{ grid-template-columns: repeat(3, 1fr); }
}

/* 9) My Links table */
.lk-my-links{ margin-top:16px; }
.lk-links-box{
  --ring: 1px solid #e9ebf0; --bg:#fff; --bg-sticky:#fff; --row-hover:#fafbff;
  --radius:14px; --muted:#6b7280; --shadow:0 8px 26px rgba(16,24,40,.06);
}
.lk-tablewrap{
  border: var(--ring); border-radius: var(--radius); overflow: auto;
  max-height: clamp(260px, 42vh, 380px);
  background: var(--bg); box-shadow: var(--shadow);
}
.lk-table{
  width: 100%; border-collapse: separate; border-spacing: 0; table-layout: fixed;
  font-size: 0.95rem;
}
.lk-table thead th{
  position: sticky; top: 0; z-index: 3;
  background: var(--bg); padding: 10px 12px;
  font-weight: 700; text-align: left; border-bottom: var(--ring);
}
.lk-table .col-idx{ width: 3.2ch; }
.lk-table .col-created{ width: 12rem; }
.lk-table .col-clicks{ width: 6rem; text-align: right; font-variant-numeric: tabular-nums; }
.lk-table .col-actions{ width: 14rem; }
.lk-table tbody td{
  padding: 12px; border-bottom: 1px solid #f2f4f7; vertical-align: middle;
}
.lk-table tbody tr:hover{ background: var(--row-hover); }
.lk-table .col-idx { color: var(--muted); }
.lk-table .col-target a,
.lk-table .col-short a{
  display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lk-table .actions{ display:grid; grid-template-columns: 1fr 1fr; gap:.5rem; }
.lk-table .actions .btn{
  display:flex; align-items:center; justify-content:center;
  height:34px; width:100%; padding:0 .6rem; line-height:1;
  white-space:nowrap; margin:0;
}

/* Additional generic table tidy */
.lk-table th, .lk-table td{ padding:10px 12px; border-bottom:1px solid var(--panel-border); vertical-align:middle; }
.lk-table tr:hover td{ background:#f7fbf8; }
.col-idx,.col-metric,.col-actions{ text-align:right; white-space:nowrap; }
.col-created{ white-space:nowrap; }
.col-pixel{ text-align:center; width:44px; }
.col-name .title{
  display:inline-block; max-width:320px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-weight:600;
}
.col-name .sub{ font-size:12px; color:#6b7280; margin-top:2px; }
.col-name code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:12px;
  background:#f6f8fa; border:1px solid var(--panel-border); padding:1px 4px; border-radius:4px;
}

/* Empty state */
.lk-links-empty{ text-align:center; padding:.85rem; color: #6b7280; }

/* Table responsive */
@media (max-width: 560px){
  .lk-table thead th, .lk-table tbody td { padding: 10px 8px; }
}
@media (max-width: 400px){
  .lk-table thead th, .lk-table tbody td { padding: 8px 6px; }
}
@media (max-width: 760px){
  .lk-table .col-short{ display: none; }
  .lk-table .col-idx{ width: 2.2ch; }
  .lk-table .col-created{ width: 9.5rem; }
  .lk-table .col-clicks{ width: 4.5rem; text-align: right; }
  .lk-table .col-actions{ width: 9.5rem; }
  .lk-table .actions{ grid-template-columns: 1fr 1fr; gap: .35rem; }
  .btn.tiny { height: 32px; font-size: .8rem; }
}
@media (max-width: 560px){
  .lk-table .col-created { display: none; }
  .lk-table thead th, .lk-table tbody td { min-width: 0; }
}
@media (max-width: 480px){
  .lk-table .col-idx { display: none; }
  .lk-table .col-actions{ width: 8.5rem; }
}
@media (max-width: 430px){
  .lk-table .actions{ grid-template-columns: 1fr; }
  .lk-table .col-actions{ width: 6.5rem; }
}
@media (max-width: 370px){
  .lk-table{ min-width: 480px; }
  .lk-tablewrap{ overflow-x: auto; }
}

/* Misc chips and badges */
.badge.warn{
  margin-left:6px; padding:2px 6px; border-radius:999px; background:#fff3cd; border:1px solid #ffe69c; font-size:12px; color:#7a5e0e;
}
.uv{
  display:inline-block; min-width:52px; padding:2px 8px; border-radius:999px;
  background: linear-gradient(0deg,var(--baby-green),var(--baby-lime));
  border:1px solid var(--panel-border); font-size:12px;
}
.uv .u{ font-weight:600; }
.uv .sep{ padding:0 2px; opacity:.6; }
.actions{ display:flex; gap:8px; justify-content:flex-end; }

/* Admin abuse count pill */
.badge2{
  display:inline-block; min-width:22px; padding:2px 8px; border-radius:999px;
  background:#e8f6ee; color:#14532d; border:1px solid #d8e7dd; font-weight:700; text-align:center;
}

/* 10) Dashboard */
.lk-dash-card{ padding:28px; }
.lk-dash-header{
  display:flex; align-items:center; gap:12px; justify-content:space-between; margin-bottom:12px;
}
.lk-dash-badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px; border-radius:999px; font-weight:800; font-size:.85rem;
  border:1px solid var(--mid-gray); background:#fff; color:#0b1b10;
}
.lk-dash-badge.ok{ border-color:#86efac; background:#f0fdf4; }
.lk-dash-badge.warn{ border-color:#fecaca; background:#fff1f2; }
.lk-dash-grid{
  display:grid; gap:12px; margin:8px 0 16px; grid-template-columns: 1fr;
}
.lk-dash-kv{
  background:var(--panel-bg); border:1px solid var(--panel-border);
  border-radius:12px; padding:12px 14px; display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.lk-dash-label{ color:#64748b; font-weight:700; }
.lk-dash-value a{ color:inherit; text-decoration:none; border-bottom:1px dashed rgba(0,0,0,.2); }
.lk-dash-value a:hover{ border-bottom-color:transparent; }
.lk-dash-chip{
  display:inline-block; padding:4px 10px; border-radius:999px; font-weight:800;
  border:1px solid var(--mid-gray); background:#fff;
}
.lk-dash-chip.plan-0{ border-color:#cbd5e1; background:#f8fafc; }
.lk-dash-chip.plan-1{ border-color:#86efac; background:#f0fdf4; }
.lk-dash-chip.plan-2{ border-color:#c4b5fd; background:#eef2ff; }
.lk-dash-chip.plan-3{ border-color:#fcd34d; background:#fffbeb; }
.lk-dash-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.lk-dash-actions .btn[aria-disabled="true"]{ filter: grayscale(.2); opacity:.7; cursor:not-allowed; }
@media (min-width: 820px){
  .lk-dash-grid{ grid-template-columns: 1fr 1fr; }
}

/* 11) Home hero CTAs */
.lk-home-cta{
  display:grid; grid-template-columns: 1fr auto; align-items:center; gap:16px; margin-top:12px;
}
.lk-home-notes{ color:#8a97a6; font-size:.85rem; line-height:1.4; }
.lk-home-notes p{ margin:0; }
.lk-home-notes p + p{ margin-top:2px; }
.lk-home-actions{ display:flex; gap:12px; justify-self:end; }
.lk-home-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:14px; font-weight:800; letter-spacing:.2px; text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition: transform .06s ease, filter .15s ease, box-shadow .15s ease;
  border:1px solid transparent; white-space:nowrap;
}
.lk-home-btn:hover{ filter:saturate(1.05); transform:translateY(-1px); }
.lk-home-btn:active{ transform:translateY(0); }
.lk-home-btn--primary{
  background:linear-gradient(180deg,#ffd24d,#ffe784);
  border-color:#ffd24d; color:#0b1b10;
  box-shadow:0 10px 28px rgba(255,210,77,.28);
}
.lk-home-btn--disabled{
  background:linear-gradient(180deg,#f4f6f8,#e9edf2);
  border-color:#d8dde3; color:#7a8594;
  filter:grayscale(.1); opacity:.8; cursor:not-allowed; pointer-events:none;
}
@media (max-width: 820px){
  .lk-home-notes{ font-size:.9rem; }
  .text-bubble .lk-home-notes p{ font-size:.9rem; }
  .lk-home-cta{ grid-template-columns: 1fr; align-items:stretch; }
  .lk-home-actions{ justify-self:stretch; }
  .lk-home-btn{ flex:1 1 100%; text-align:center; }
}
.text-bubble .lk-home-notes p{ font-size:.85rem; line-height:1.4; margin:0; }
.text-bubble .lk-home-notes p + p{ margin-top: 2px; }

/* 12) Mini roadmap */
.lk-lite-rm{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  padding:8px 12px; border:1px solid var(--panel-border);
  border-radius:999px; background:#fff; box-shadow:0 6px 18px rgba(0,0,0,.04);
  width: max-content; margin: 16px auto 0; max-width: calc(100% - 32px);
}
.lk-lite-pill{
  display:inline-block; padding:4px 10px; border-radius:999px;
  font-size:12px; font-weight:800; letter-spacing:.02em;
  border:1px solid var(--mid-gray); background:#f8fafc; color:#0b1b10;
}
.lk-lite-pill.beta{ border-color:#fde68a; background:#fffbeb; }
.lk-lite-text{ font-size:14px; color:#475569; line-height:1.4; }
.lk-lite-text strong{ color:#0f172a; font-weight:800; }

/* 13) Readable roadmap */
.lk-rm-easy{
  max-width: 720px; margin: 16px auto 0; padding: 14px 16px;
  background: #fff; border: 1px solid var(--panel-border);
  border-radius: 14px; box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.lk-rm-easy .badge{
  display:inline-flex; align-items:center; gap:6px;
  padding:4px 10px; border-radius:999px;
  border:1px solid var(--mid-gray); background:#f8fafc; color:#0b1b10;
  font-size:.85rem; font-weight:800; letter-spacing:.02em; margin-bottom:8px;
}
.lk-rm-easy .list{ list-style:none; margin:0; padding:0; }
.lk-rm-easy .row{
  display:grid; grid-template-columns: 160px 1fr;
  gap: 10px 14px; padding: 10px 0; border-top: 1px dashed var(--mid-gray);
}
.lk-rm-easy .row:first-child{ border-top: 0; }
.lk-rm-easy .heading{
  font-weight: 900; letter-spacing:.2px; color:#0b1b10;
  font-size: clamp(15px, 2.8vw, 16px); line-height: 1.2;
}
.lk-rm-easy .heading.live{ color:#166534; }
.lk-rm-easy .heading.building{ color:#92400e; }
.lk-rm-easy .heading.next{ color:#1e3a8a; }
.lk-rm-easy .chips{ display:flex; flex-wrap:wrap; gap:8px; }
.lk-rm-easy .chip{
  display:inline-flex; align-items:center; padding:6px 10px; border-radius:999px;
  border:1px solid var(--mid-gray); background:#fff; color:#0b1b10;
  font-weight:800; font-size:.95rem; box-shadow:0 2px 8px rgba(0,0,0,.04);
}
@media (max-width: 720px){
  .lk-rm-easy .row{ grid-template-columns: 1fr; }
  .lk-rm-easy .heading{ font-size: 1rem; }
  .lk-rm-easy .chip{ font-size:.92rem; }
}

/* 14) Pretty upgrade hint */
.lk-upgrade-row .meta{
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end;
}
.lk-up-sep{ opacity:.5; }
.lk-up-text{ color:#64748b; font-weight:700; }
.lk-up-pill{
  display:inline-flex; align-items:center; gap:6px;
  padding:6px 10px; border-radius:999px;
  background:linear-gradient(180deg,var(--accent-2),#fff1a6);
  border:1px solid var(--accent-2);
  color:var(--btn-text);
  font-weight:900; font-size:.8rem; text-decoration:none;
  box-shadow:0 6px 18px rgba(255,210,77,.22);
  transition:transform .06s ease, filter .15s ease;
}
.lk-up-pill:hover{ filter:saturate(1.06); transform:translateY(-1px); }
.lk-up-tiers{ display:inline-flex; gap:6px; align-items:center; flex-wrap:wrap; }
.lk-tier{
  display:inline-block; padding:3px 8px; border-radius:999px;
  border:1px solid var(--mid-gray); font-size:.75rem; font-weight:800; letter-spacing:.02em; background:#fff;
}
.lk-tier.bronze{ background:#f0fdf4; border-color:#86efac; }
.lk-tier.silver{ background:#eef2ff; border-color:#c4b5fd; }
.lk-tier.gold{ background:#fffbeb; border-color:#fcd34d; }

/* 15) Section divider you can reuse anywhere */
hr.lemon {
  border: none; height: 4px; border-radius: 999px;
  background: linear-gradient(90deg, var(--baby-lime) 0%, var(--accent) 50%, var(--baby-green) 100%);
  margin: 32px auto; width: 80%; max-width: 720px; opacity: .8;
}

/* 16) Print-friendly for text-bubble */
@media print{
  .text-bubble{
    background: #fff; border-color: #000; box-shadow: none;
  }
  .text-bubble a[href^="?"],
  .text-bubble a[href^="http"]::after{
    content: " (" attr(href) ")"; font-size: .9em; color: #333; border: 0;
  }
}


/* ==== Unify ALL yellow CTAs (Create link / Live tree demo / Create QR code / etc.) ==== */
:root{
  --ctaY-top:#ffe784;      /* light */
  --ctaY-btm:#ffd24d;      /* base */
  --ctaY-border:#f7d771;   /* outline */
  --ctaY-text:#0b1b10;     /* ink */
  --ctaY-shadow:rgba(255,210,77,.28);
}

/* Buttons & links that are the “yellow primary” */
button.btn.lemon,
a.btn.lemon,
.btn.lemon,
a.lk-home-btn.lk-home-btn--primary,
.lk-home-btn--primary{
  /* visual recipe (force it to win) */
  background: linear-gradient(180deg,var(--ctaY-top),var(--ctaY-btm)) !important;
  background-color: var(--ctaY-btm) !important;
  border: 2px solid var(--ctaY-border) !important;
  color: var(--ctaY-text) !important;
  box-shadow: 0 10px 28px var(--ctaY-shadow) !important;

  /* keep shape/weight consistent */
  border-radius: 14px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition: transform .06s ease, filter .15s ease, box-shadow .15s ease !important;
}

button.btn.lemon:hover,
a.btn.lemon:hover,
.lk-home-btn--primary:hover{
  transform: translateY(-1px);
  filter: saturate(1.06);
  box-shadow: 0 12px 32px var(--ctaY-shadow);
}

button.btn.lemon:active,
a.btn.lemon:active,
.lk-home-btn--primary:active{
  transform: translateY(0);
}

button.btn.lemon:focus-visible,
a.btn.lemon:focus-visible,
.lk-home-btn--primary:focus-visible{
  outline: 2px solid var(--ctaY-border);
  outline-offset: 2px;
}



/* ===== Lynko.tv - Drop-in mobile scroll + footer patch ===== */

/* 1) Desktop only: keep your fixed footer and absolute main */
@media (min-width: 601px){
  footer.footer{
    position: fixed; left: 0; right: 0; bottom: 0;
    min-height: var(--footer-h);
    z-index: 900;
  }
  body{
    /* reserve space so content does not sit under footer */
    padding-bottom: calc(var(--footer-h) + env(safe-area-inset-bottom));
    overflow: hidden; /* desktop keeps the main as the scroller */
  }
  .main, main.content{
    position: absolute;
    top: var(--menu-h);
    left: 0; right: 0;
    bottom: var(--footer-h);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
  }
  .site-wrap{
    height: 100svh; /* viewport-true on modern mobiles, fine on desktop */
    overflow: hidden;
  }
}

/* 2) Phones: let the whole page scroll and put footer in normal flow */
@media (max-width: 600px){
  html, body{
    height: auto;
    min-height: 100dvh;
    overflow: auto;               /* restore page scrolling */
    touch-action: pan-y;
    padding-bottom: 0;            /* no fixed-footer spacing needed */
  }

  /* prevent the wrapper from clipping content */
  .site-wrap{
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  /* main back to normal flow so it pushes the footer down */
  .main, main.content{
    position: static;
    top: auto; right: auto; bottom: auto; left: auto;
    overflow: visible;            /* no nested scroller on phones */
    min-height: auto;
    padding: 16px;
  }

  /* footer sits after content and stays at the bottom when short */
  footer.footer{
    position: static;
    margin-top: auto;
    min-height: auto;
  }

  /* your existing footer tweaks */
  .footer-inner{ flex-direction: column; gap: 8px; font-size: 13px; padding-bottom: 12px; }
  .footer-links{ order: 2; line-height: 1.4; }
  .footer-cta{ order: 1; }
}

/* Verkeerde spacer van CTA verwijderen */
.lk-home-cta:last-child { margin-bottom: 0 !important; }



/* Force light rendering for these controls, regardless of device theme */
.with-toggle .input-row,
.with-toggle .icon-btn,
#captcha-display,
.btn-step {
  color-scheme: light;
}

/* Make the text dark and visible */
.with-toggle .icon-btn,
.btn-step {
  background-color: #fff;
  color: #111827;            /* dark gray text */
  border: 1px solid #d1d5db; /* subtle border so it shows on white */
  border-radius: 12px;
}

.with-toggle .icon-btn { padding: 0.45rem 0.75rem; }

/* Captcha stepper look */
.btn-step {
  width: 44px;
  height: 44px;
  font-size: 22px;
  line-height: 1;
}

#captcha-display {
  background-color: #fff;
  color: #111827;
  border: 1px solid #d1d5db;
  border-radius: 12px;
}

/* Optional: if you set color-scheme on html/body, keep forms light */
form, .form-card { color-scheme: light; }



/* Footer-safe alleen voor het laatste contentblok in de pagina 
.main-inner > .text-bubble:last-of-type,
.main-inner > .lk-sl-card:last-of-type,
.main-inner > .lk-rm-easy:last-of-type,
.main-inner > .container:last-of-type {
  margin-bottom: var(--footer-safe);
}
  */
  /* ===== Lynko Maintenance (lemon-lime) ===== */
.lk-maint-title{ margin:4px 0 12px; font-size:20px; color:#0f172a; }

.lk-maint-form{ display:grid; gap:12px; }
.lk-maint-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:12px; }
.lk-maint-wrap .amd-btn{ padding:10px 14px; border-radius:12px; }
.lk-maint-wrap .amd-btn.ghost{ background:#fff; border:1px solid #e6e9ee; }

.lk-switch{ display:flex; align-items:center; gap:12px; padding:12px; border:1px solid #e6e9ee; border-radius:14px; background:#fff;
  box-shadow:0 1px 2px rgba(16,24,40,.04); }
.lk-switch .label{ display:flex; flex-direction:column; line-height:1.2; color:#0f172a; }
.lk-switch small{ color:#667085; }

.lk-switch input{ display:none; }
.lk-switch .slider{
  width:48px; height:28px; border-radius:999px; background:#e6e9ee; position:relative; flex:0 0 auto;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.02);
}
.lk-switch .slider::after{
  content:""; position:absolute; top:3px; left:3px; width:22px; height:22px; border-radius:50%; background:#fff;
  box-shadow:0 1px 2px rgba(16,24,40,.12); transition:all .18s ease;
}
.lk-switch input:checked + .slider{ background:#a3e635; }          /* track lemon-lime */
.lk-switch input:checked + .slider::after{ transform:translateX(20px); }

.lk-maint-reason textarea{
  width:100%; min-height:96px; padding:10px 12px; border:1px solid #e6e9ee; border-radius:10px; resize:vertical;
  background:#fff; color:#0f172a; box-shadow:0 1px 2px rgba(16,24,40,.04);
}

.lk-maint-actions{ display:flex; gap:8px; align-items:center; }

.lk-maint-box{
  margin:10px 0; padding:12px 14px; border-radius:12px; border:1px solid #e6e9ee; background:#fff;
  box-shadow:0 1px 2px rgba(16,24,40,.04);
}
.lk-maint-box.success{ border-color:#16a34a33; }
.lk-maint-box.error{ border-color:#ef444433; }
.lk-maint-box.warn{ border-color:#f59e0b33; }
.lk-maint-box .muted{ color:#667085; }
.lk-maint-box .reason{ margin-top:4px; }