/* Algemene layout */
html, body {
  overflow-x: hidden;
}

body {
	
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	font-size: 14px;
}
.ql-editor {
    font-size: 16px !important;
}
.dropzone {
    border: 1px solid #6c757d;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(to bottom, #f5faff, #e8f2ff, #f5faff);
    color: #003366;
    font-size: 15px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.dropzone.hover {
    background: linear-gradient(to bottom, #e0efff, #cfe5ff, #e0efff);
    border-color: #2b7cff;
}

.dropzone::before {
    content: "⬆";
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
    color: #2b7cff;
}

.activities-table td.omschrijving {
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}
/* Layout van menu + content */
.layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar menu */
.sidebar {
    width: 200px;
    background: #f0f0f0;
    padding: 15px;
    box-sizing: border-box;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.sidebar ul li a:hover {
    color: #0073e6;
}

/* Hoofdcontent */
.content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

/* Tabellen */
table {
    border-collapse: collapse;
    width: 100%;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

/* Fout- en info-meldingen */
.error {
    background-color: #fdd;
    border: 1px solid #f99;
    padding: 10px;
    margin-bottom: 15px;
}

.info {
    background-color: #dfd;
    border: 1px solid #9f9;
    padding: 10px;
    margin-bottom: 15px;
}

/* Paginering */
.pagination a {
    display: inline-block;
    margin: 2px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
}

.pagination a:hover {
    background-color: #0073e6;
    color: white;
}
.filter-container {
    background-color: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    border-radius: 6px;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-row {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.filter-row label {
    font-weight: bold;
    margin-bottom: 3px;
}

.filter-row input,
.filter-row select {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.filter-row button,
.reset-button {
    padding: 6px 12px;
    margin-top: 5px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}

.reset-button {
    background-color: #6c757d;
}

.activities-table {
    width: 100%;
    border-collapse: collapse;
}

.activities-table th,
.activities-table td {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: left;
	font-weight: normal !important;
    font-size: 0.9em;
}

.activities-table th {
    background-color: #f1f1f1;
}

.activities-table tr:nth-child(even) {
    background-color: #fafafa;
}

.activities-table tr:hover {
    background-color: #f0f8ff;
}

.description-view{
    padding:10px;
    background:#fff;
    border:1px solid #ddd;
    border-radius:4px;
}

.subtask-not-needed{
    color:#888;
    font-style:italic;
}

.subtask-badge{
    font-size:11px;
    background:#e9ecef;
    color:#495057;
    padding:2px 6px;
    border-radius:4px;
    margin-left:6px;
}

.drag-handle {
    display: inline-block;
    cursor: grab;
    cursor: -webkit-grab;
    user-select: none;
    -webkit-user-select: none;
}

.sortable-chosen .drag-handle,
.sortable-ghost .drag-handle,
.sortable-drag .drag-handle {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.sortable-ghost {
    opacity: 0.4;
}

.sortable-chosen {
    background: #f8f9fa;
}

.pagination {
    margin-top: 15px;
}
.pagination a {
    margin-right: 5px;
    padding: 5px 10px;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}
.pagination a:hover {
    background-color: #ddd;
}
.filter-form {
    max-width: 500px; /* vaste breedte */
    margin: 0; /* links uitgelijnd */
}

.filter-table {
    width: 100%;
    border-collapse: collapse;
}

.filter-table td {
    padding: 3px 6px;
    vertical-align: middle;
    background-color: transparent; /* geen celachtergrond */
}

.filter-table label {
    font-weight: bold;
    margin-bottom: 2px;
    display: block;
}

.filter-table select,
.filter-table input {
    width: 100%;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 14px;
}
.filter-table input.small{
	    width: 50%;
}

.filter-table button {
    padding: 5px 12px;
    margin-right: 5px;
    border: none;
    border-radius: 3px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.filter-table button:hover {
    background-color: #0056b3;
}

/* Responsive: cellen onder elkaar op kleine schermen */
@media (max-width: 520px) {
    .filter-table td {
        display: block;
        width: 100%;
    }
    
    .filter-table button {
        width: 48%;
        margin-bottom: 5px;
    }
}

.table-wrapper{
	width: 100%;
}
@media (max-width: 768px) {
	.table-wrapper{
	width: 95%;
}
}
/* Algemene kleine font-size */
body, table, select {
    font-size: 14px;
}

input,
textarea {
  font-size: 16px;
  transform: scale(0.85);
  transform-origin: left center;
}
/* Tabellen: geen bold headers meer */
table th {
    font-weight: normal;
}

/* Standaard knopstijl (ook voor <a> als button) */
.btn,
.btn-small {
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #999;
    border-radius: 3px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    font-size: 11px;
    margin-right: 3px;
}

.btn-small {
    padding: 2px 6px;
    font-size: 11px;
}

.btn:hover,
.btn-small:hover {
    background-color: #e0e0e0;
}

/* Succes-highlight voor een rij (rename / delete) */
.row-success {
    background-color: #dfd !important;
    transition: background-color 0.5s ease;
}
button {
    padding: 6px 12px;
    margin-top: 5px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
}
/* ===========================
   POPUP OVERLAY
   =========================== */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* ===========================
   POPUP CONTENT
   =========================== */

.popup-content {
    background: #fff;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    border-radius: 5px;
    position: relative;
    overflow-y: auto;
    max-height: 80vh;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* ===========================
   POPUP HOOFDTABEL
   =========================== */

.popup-content > table {
    width: 100%;
    border-collapse: collapse;
}

.popup-content > table > tr > td,
.popup-content > table > tbody > tr > td {
    padding: 5px 10px;
    vertical-align: top;
    border-bottom: 1px solid #eee;
}

.popup-content > table td:first-child {
    font-weight: bold;
    width: 40%;
}

/* ===========================
   POPUP BESTANDEN (GEEN BORDERS)
   =========================== */

.popup-files-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

.popup-files-table td {
    padding: 6px 4px;
    border: none !important;
}

/* ===========================
   POPUP LINKS
   =========================== */

.popup-content a {
    color: #0073e6;
    text-decoration: none;
}

.popup-content a:hover {
    text-decoration: underline;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 600px) {
    .popup-content {
        padding: 15px;
        width: 95%;
    }

    .popup-content > table td:first-child,
    .popup-content > table td:last-child {
        display: block;
        width: 100%;
    }
}
/* ===========================
   POPUP – BESTANDEN HEADER
   =========================== */

.popup-files-header td {
	background: linear-gradient(to bottom, #e0e0e0, #f8f8f8, #e0e0e0);
    font-weight: bold;
    padding: 8px 10px;
}
/* ===========================
   POPUP – LEGE SCHEIDINGSRIJ
   =========================== */

.popup-separator-row td {
    height: 8px;
    padding: 0;
    background: transparent;

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;

    border-left: none !important;
    border-right: none !important;
}

.mail-var {
    background: #ffeeba;
    padding: 1px 4px;
    border-radius: 3px;
    font-family: monospace;
}
.mail-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: none;
    z-index: 9999;
}
.mail-modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 900px;
}
.preview-box {
    border: 1px solid #ccc;
    padding: 10px;
    background: #fafafa;
}
button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
}
.pagination {
    white-space: nowrap;
}

.pagination a,
.pagination span {
    margin: 0 3px;
    text-decoration: none;
}

.pagination .current {
    font-weight: bold;
}

.pagination .dots {
    opacity: 0.6;
}

.pagination input {
    text-align: center;
}
/* sorteerlinks */
.sort-link {
    text-decoration: none;
    color: #333;
}

.sort-link:hover {
    text-decoration: underline;
}

/* actieve kolom */
.sort-link:has(span),
th .sort-link {
    font-weight: 600;
}

th .sort-link:contains("▲"),
th .sort-link:contains("▼") {
    color: #000;
}

/* tabel */
.data-table th {
    background: #f5f5f5;
    cursor: pointer;
}
.desc-tooltip {
    cursor: pointer;
    border-bottom: 1px dotted #666;
}

.tooltip-popup {
    position: absolute;
    background: #333;
    color: #fff;
    padding: 8px 10px;
    border-radius: 4px;

    max-width: 450px;
    font-size: 0.9em;
    line-height: 1.4;

    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.logout-hint {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin: 4px 0 0 0;
    padding: 6px 8px;
    border-left: 3px solid #c00;
    background: #fff5f5;
    color: #900;
    font-size: 12px;
    line-height: 1.3;
    border-radius: 4px;
}

.logout-hint-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: #c00;
    margin-top: 1px;
}
/* ===============================
   LOGOUT KNOP
   =============================== */

.logout-item {
    margin-top: 10px;
}

.logout-link {
    display: flex;
    align-items: center;
    gap: 6px;

    color: #b00000;
    font-weight: bold;
    text-decoration: none;
}

.logout-link:hover {
    color: #e00000;
}

.logout-icon {
    width: 16px;
    height: 16px;
    fill: currentColor; /* volgt tekstkleur */
    flex-shrink: 0;
}
/* ===============================
   BASIS LAYOUT
   =============================== */

.layout {
  display: flex;
  min-height: 100vh;
}

/* ===============================
   SIDEBAR (DESKTOP & BASIS)
   =============================== */

.sidebar {
  width: 200px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* cruciaal voor logout-onderaan */
}

/* ===============================
   MENU STRUCTUUR
   =============================== */

.menu {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}

.menu-main {
  flex: 0 1 auto;
}

.menu-logout {
  margin-top: auto; /* logout onderaan indien ruimte */
  margin-bottom: 60px;

}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    .menu-logout {
      padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
  }
}
/* ===============================
   MENU ALS TABEL
   =============================== */

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-row {
  cursor: pointer;
}

.menu-row td {
  padding: 12px 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.menu-row:hover {
  background-color: #f0f8ff;
}

.menu-row a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #333;
  text-decoration: none;
}

/* ===============================
   DRILL-DOWN MENU
   =============================== */

.submenu {
  display: none;
}

.sidebar[data-active-menu] .menu-root {
  display: none;
}

.sidebar[data-active-menu] .submenu {
  display: none;
}
.sidebar[data-active-menu="clientaction"] .submenu[data-submenu="clientaction"],
.sidebar[data-active-menu="tasks"] .submenu[data-submenu="tasks"],
.sidebar[data-active-menu="activiteiten"] .submenu[data-submenu="activiteiten"],
.sidebar[data-active-menu="assortiment"] .submenu[data-submenu="assortiment"],
.sidebar[data-active-menu="leveranciers"] .submenu[data-submenu="leveranciers"],
.sidebar[data-active-menu="gebruikers"]   .submenu[data-submenu="gebruikers"],
.sidebar[data-active-menu="beveiliging"]  .submenu[data-submenu="beveiliging"],
.sidebar[data-active-menu="e-mail"]        .submenu[data-submenu="e-mail"],
.sidebar[data-active-menu="profiel"]      .submenu[data-submenu="profiel"] {
  display: block;
}

.menu-back td {
  font-weight: bold;
}

/* ===============================
   LOGOUT BLOK
   =============================== */

.logout-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  line-height: 1;
}

.logout-link span {
  line-height: 1;
}

.logout-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.logout-item:hover {
  background-color: #f8f8f8;
}

/* Tip onder logout */
.logout-tip td {
  padding: 8px 10px;
  border: none;
}

.logout-hint {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.logout-hint-icon {
  width: 16px;
  height: 16px;
  fill: #888;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===============================
   MOBIEL: HAMBURGER SIDEBAR + OVERLAY
   =============================== */

.headermenu__hamburger {
  display: none;
}

.mfilter-open-btn {
  display: none;
}

.sidebar-overlay {
  display: none;
}

@media (max-width: 768px) {

  .mfilter-open-btn {
    display: inline-flex;
  }
  
  .layout {
    flex-direction: column;
  }

  .headermenu__hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ===============================
     SIDEBAR (fade, geen slide)
     =============================== */

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100vh;

    padding: 15px;
    box-sizing: border-box;
    background: #f0f0f0;

    z-index: 3000;

    /* fade gedrag */
    opacity: 0;
    pointer-events: none;

    transition: opacity 0.15s ease;
  }

  .sidebar.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ===============================
     OVERLAY (fade synchroon)
     =============================== */

  body.menu-open .sidebar-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 240px; /* exact sidebar breedte */

    background: rgba(0,0,0,0.45);
    z-index: 2000;

    opacity: 1;
    transition: opacity 0.15s ease;

    pointer-events: auto;
  }

  .sidebar-overlay {
    opacity: 0;
  }

  .content {
    padding: 15px;
  }
}
/* ===============================
   SUBMENU CONTEXT HEADER
   =============================== */

.menu-context td {
  font-weight: bold;
  background: #e9e9e9;
  color: #333;

  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb;
  cursor: default;
}
.menu-link {
  cursor: pointer;
}

.menu-link td {
  padding: 12px 10px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.menu-link:hover {
  background-color: #f0f8ff;
}

.menu-link a {
  display: flex;
  align-items: center;
  width: 100%;
  color: #333;
  text-decoration: none;
}
/* ===============================
   MOBIELE HEADER (TOP BAR)
   =============================== */

.mobile-header {
  display: none; /* desktop: uit */
}

@media (max-width: 768px) {
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 75px;
    padding: 0 12px;

    background: #162B44; /* donkerder grijs dan pagina */
    z-index: 3500;
    box-sizing: border-box;
  }

  /* Header verbergen zodra menu open is */
  body.menu-open .mobile-header {
    display: none;
  }

  .headermenu__hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
  }

  .mobile-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
  }

  .mobile-header__logo img {
    height: 40px; /* schaal naar wens */
    width: auto;
    display: block;
  }

  .mobile-header__actions {
    display: inline-flex;
    gap: 10px;
    align-items: center;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }

  /* Content onder header laten starten */
  .content {
    padding-top: 90px; /* 75px header + beetje ruimte */
  }

  /* Sidebar drawer blijft leidend */
  .sidebar {
    top: 0; /* menu mag bovenaan beginnen */
    height: 100vh;
    z-index: 3000;
  }

  body.menu-open .sidebar-overlay {
    z-index: 2000;
  }
}
@media (min-width: 769px) {
	p.hide-mobile{
    display: none;
  }
}
@media (max-width: 768px) {
  th.hide-mobile,
  td.hide-mobile {
    display: none;
  }
}
.text-to-icon-allowed,
.text-to-icon-denied {
  position: relative;
  white-space: nowrap;
}
@media (max-width: 768px) {

  th.text-to-icon-allowed,
  th.text-to-icon-denied,
  td.text-to-icon-allowed,
  td.text-to-icon-denied {
    font-size: 0 !important;     /* 🔑 wint van tabelregels */
    padding-left: 0;
    padding-right: 0;
    text-align: center;

    width: 36px;
    min-width: 36px;
    max-width: 36px;
  }

  th.text-to-icon-allowed::after,
  td.text-to-icon-allowed::after {
    content: "✓";
    font-size: 18px;
    color: #28a745;
    line-height: 1;
  }

  th.text-to-icon-denied::after,
  td.text-to-icon-denied::after {
    content: "✕";
    font-size: 18px;
    color: #dc3545;
    line-height: 1;
  }
}

/* basis */
.setting {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* checkbox standaard zichtbaar */
.toggle {
  display: none;
}

/* ───────── MOBILE ───────── */
@media (max-width: 768px) {
  .setting input {
    display: none;
  }

  .setting .toggle {
    display: inline-block;
    width: 44px;
    height: 26px;
    background: #ccc;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
  }

  .setting .toggle::after {
    content: "";
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.2s;
  }

  .setting input:checked ~ .toggle {
    background: #34c759;
  }

  .setting input:checked ~ .toggle::after {
    transform: translateX(18px);
  }
}
@media (max-width: 768px) {

    /* thead alleen hier verbergen */
    .activities-table.activities-table--mobile-cards thead {
        display: none;
    }

    .activities-table.activities-table--mobile-cards,
    .activities-table.activities-table--mobile-cards tbody {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* rij = kaart */
    .activities-table.activities-table--mobile-cards tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        background-color: #fff;
        overflow: hidden;
    }

    /* standaard td */
    .activities-table.activities-table--mobile-cards td {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        border-bottom: 1px solid #eee;
    }

    .activities-table.activities-table--mobile-cards td:last-child {
        border-bottom: none;
    }

    /* alle mobiele labels uit */
    .activities-table.activities-table--mobile-cards td::before {
        display: none;
    }

    /* omschrijving als blok */
    .activities-table.activities-table--mobile-cards td.omschrijving {
        display: block;
        padding: 12px 10px;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* kolom volledig verbergen */
    .activities-table.activities-table--mobile-cards td[data-label="Ingevoerd op"] {
        display: none;
    }
}
/* ===============================
   OVERLAY & DRAWER
   =============================== */

.mfilter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  z-index: 4000;
}

.mfilter-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100dvh; /* 🔑 iOS Safari correct */
  background: #fff;
  z-index: 4100;
  display: flex;
  flex-direction: column;
  transition: right 0.25s ease;
}

.mfilter-drawer.is-open {
  right: 0;
}

/* ===============================
   FORM STRUCTUUR
   =============================== */

.mfilter-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.mfilter-header {
  flex-shrink: 0;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.mfilter-body {
  flex: 1 1 auto;
  overflow-y: auto;
  min-height: 0;
  padding: 12px;
  -webkit-overflow-scrolling: touch;

  /* ruimte voor footer + safe area */
  padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

.mfilter-footer {
  flex-shrink: 0;
  padding: 12px;
  border-top: 1px solid #ddd;
  background: #fff;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

/* ===============================
   SECTIES & INPUTS
   =============================== */

.mfilter-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mfilter-section input[type="text"],
.mfilter-section input[type="date"] {
  width: 100%;
  box-sizing: border-box;
}

/* ===============================
   LEVERANCIERS
   =============================== */
/* leveranciers lijst altijd volledig zichtbaar */
.mfilter-supplier-list{
  display:flex;
  flex-direction:column;
}

/* verbergen bij zoeken */
.mfilter-supplier.is-hidden{
  display:none !important;
}

/* geen resultaten melding */
.mfilter-no-results{
  display:none;
  font-size:13px;
  color:#666;
  padding:6px 0;
}
.mfilter-no-results.is-visible{
  display:block;
}

/* “Meer leveranciers” als hij nog in HTML staat: verbergen */
.mfilter-more{
  display:none !important;
}


/* ===============================
   ITEMS & KNOP
   =============================== */

.mfilter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  border-bottom: 1px solid #eee;
}

.mfilter-more {
  margin-top: 6px;
  background: none;
  border: 0;
  color: #0073e6;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 768px) {
  form.filter-desktop {
    display: none !important;
  }
}

.mfilter-no-results {
  display: none;
  font-size: 13px;
  color: #666;
  padding: 6px 0;
}

.mfilter-no-results.is-visible {
  display: block;
}
.mfilter-overlay {
  touch-action: none;
}
