/* =====================================================================
   HelSoft – BASE (scoped)
   - :root proměnné pro barevná schémata
   - Vizuální styly izolované přes .helsoft (namespace)
   ===================================================================== */

/* ===== HelSoft design tokens (fallbacky) ============================= */
:root{
  --bg:#0f0f0f;                 /* hlavní pozadí */
  --bg-soft:#1a1a1a;            /* panely, karty, bubliny */
  --text:#f0f0f0;               /* základní text */
  --muted:#b9c0c7;              /* sekundární text */

  --accent:#00bfff;             /* brand akcent */
  --accent-600:#009dd9;         /* hover akcent */
  --accent-200:rgba(0,191,255,.12); /* jemný glow / focus ring */

  --outline:rgba(0,191,255,.15);      /* tenká linka (border) */
  --outline-strong:rgba(0,191,255,.35);/* zvýrazněná linka */

  --tile-shadow:0 0 15px rgba(0,191,255,.25);
  --tile-shadow-hover:0 0 25px rgba(0,191,255,.45);

  --danger:#ff4c4c;             /* varovné / destruktivní prvky */
  --danger-700:#ff1a1a;

  --table-head-bg:#111827;      /* hlavička tabulky */
  --table-head-fg:#0a84ff;      /* text hlavičky tabulky */

  --field-border:#555;          /* okraj fieldů */
  --field-bg:#1e1e1e;           /* pozadí fieldů */
}

/* ===== Scoped base =================================================== */
.helsoft{
  background:var(--bg);
  color:var(--text);
  font-family:'Segoe UI',sans-serif;
}
.helsoft a{ color:var(--text); text-decoration:none; }
.helsoft a:hover{ color:var(--accent); }
.helsoft .muted{ color:var(--muted); }  /* drobné doplnění */

/* =====================================================================
   HEADER
   ===================================================================== */
.helsoft .site-header{
  position:sticky; top:0; z-index:1000;
  background:var(--bg);
  border-bottom:1px solid var(--outline);
  backdrop-filter:saturate(140%) blur(6px);
}
.helsoft .header-inner{
  max-width:1200px; margin:0 auto; padding:14px 18px;
  display:grid; grid-template-columns:auto 1fr auto;
  align-items:center; gap:12px;
}
.helsoft .brand{
  color:var(--accent); text-decoration:none; font-weight:800;
  font-size:clamp(18px,2.2vw,22px);
  letter-spacing:.5px; white-space:nowrap;
}
.helsoft .nav-toggle{
  display:none; width:42px;height:42px;
  border:1px solid var(--outline-strong);
  border-radius:10px; background:transparent; cursor:pointer;
}
.helsoft .nav-toggle span{
  display:block; width:22px;height:2px;
  background:var(--text); margin:5px auto;
}
.helsoft .nav-menu{
  display:flex; justify-content:center; align-items:center;
  gap:clamp(10px,2.4vw,28px);
}
.helsoft .nav-menu a{
  color:var(--text); text-decoration:none;
  font-size:clamp(14px,1.6vw,17px);
  transition:color .2s ease, opacity .2s ease;
  opacity:.95;
}
.helsoft .nav-menu a:hover{ color:var(--accent); opacity:1; }
.helsoft .user-area{ display:flex; align-items:center; gap:12px; justify-self:end; }
.helsoft .user-pill{
  display:inline-flex; align-items:center; gap:8px; padding:6px 10px;
  border-radius:999px; background:var(--accent-200);
  border:1px solid var(--outline-strong); color:var(--text);
  max-width:min(52vw,360px);
}
.helsoft .user-avatar{
  width:28px;height:28px;border-radius:50%;
  background:var(--accent); color:var(--bg);
  font-weight:800; display:grid; place-items:center; flex:0 0 28px;
}
.helsoft .user-email{
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  max-width:44ch; font-size:.95em;
}
.helsoft .logout{ color:var(--danger); }
.helsoft .logout:hover{ color:var(--danger-700); }

@media (max-width:820px){
  .helsoft .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .helsoft .nav-menu{
    grid-column:1 / -1; order:3; width:100%;
    flex-direction:column; align-items:stretch; gap:6px;
    max-height:0; overflow:hidden;
    border-top:1px solid var(--outline); margin-top:6px;
    transition:max-height .3s ease;
  }
  .helsoft .nav-menu.is-open{ max-height:260px; }
  .helsoft .nav-menu a{ padding:10px 6px; border-radius:8px; }
  .helsoft .user-area{ order:2; }
  .helsoft .user-email{ max-width:26ch; }
}
@media (max-width:480px){
  .helsoft .header-inner{ padding:10px 12px; gap:8px; }
  .helsoft .user-email{ display:none; }
}

/* =====================================================================
   MAIN + CTA
   ===================================================================== */
.helsoft main{ text-align:center; padding:80px 20px; }
.helsoft h1{ font-size:4em; color:var(--accent); margin-bottom:10px; }
.helsoft p.subtitle{ font-size:1.5em; margin-bottom:40px; }
.helsoft .btn{
  background:var(--accent); color:var(--bg);
  padding:12px 28px; font-size:1em; border:none;
  border-radius:25px; cursor:pointer;
  text-decoration:none; transition:background .3s ease;
}
.helsoft .btn:hover{ background:var(--accent-600); }

/* =====================================================================
   SECTIONS / TILES (home/dash)
   ===================================================================== */
.helsoft section{
  padding:60px 20px; max-width:1000px; margin:auto; text-align:center;
}
.helsoft .projects{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:30px; margin-top:30px;
}
.helsoft .project-box{
  border:1px solid var(--outline-strong); border-radius:10px;
  padding:20px; width:200px; color:var(--text); background:transparent;
}
.helsoft .project-box h3{ margin-top:10px; font-size:1.2em; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.helsoft footer{
  text-align:center; padding:20px; background:var(--bg);
  color:#888; font-size:.9em; margin-top:60px;
}

/* =====================================================================
   CLIENT DASHBOARD (info box + dlaždice)
   ===================================================================== */
.helsoft .client-dashboard .container{ max-width:800px; margin:auto; padding:20px; }
.helsoft .info-box{
  background:var(--bg-soft); padding:15px; border-radius:6px;
  margin-bottom:20px; color:var(--text); font-size:16px;
}

/* Základní dlaždice */
.helsoft .tile-container{
  display:flex; flex-wrap:wrap; justify-content:center;
  gap:20px; margin-top:30px;
}
.helsoft .tile{
  background:transparent !important;
  border:2px solid var(--outline-strong); border-radius:12px;
  padding:25px; margin:15px; text-align:center; color:var(--text); font-weight:bold;
  box-shadow:var(--tile-shadow); transition:all .3s ease;
  min-width:220px; min-height:180px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px;
  position:relative;
}
.helsoft .tile:hover{ transform:translateY(-2px); box-shadow:var(--tile-shadow-hover); cursor:pointer; }
.helsoft .tile-icon{ font-size:52px; line-height:1; }
.helsoft .tile-text{
  font-size:15px; white-space:normal; word-wrap:break-word; text-align:center;
}

/* =====================================================================
   TABLES + ROLES
   ===================================================================== */
.helsoft .styled-table{
  width:100%; border-collapse:collapse; margin-top:20px; background:transparent;
}
.helsoft .styled-table th,
.helsoft .styled-table td{
  border:1px solid var(--outline-strong);
  padding:10px; text-align:left; color:var(--text);
}
.helsoft .styled-table th{
  background:var(--table-head-bg); color:var(--table-head-fg);
}
.helsoft .role-grid{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:10px 40px; margin:10px 0 20px;
}
.helsoft .roles-grid label{
  background:none; padding:8px 12px; border-radius:6px;
  display:flex; align-items:center; gap:10px;
  color:#ccc; cursor:pointer; transition:background .2s;
  padding:5px 0; font-size:16px;
}
.helsoft .roles-grid label:hover{ background:rgba(255,255,255,.1); }
.helsoft .roles-grid input[type="checkbox"]{ accent-color:var(--accent); transform:scale(1.2); }
.helsoft .role-item{ display:flex; align-items:center; gap:10px; font-size:15px; color:var(--text); }

/* =====================================================================
   MODULE CARDS (client_modules.php)
   ===================================================================== */
.helsoft .module-container{ display:flex; flex-wrap:wrap; gap:20px; justify-content:flex-start; }
.helsoft .module-bubble{
  background:#111; border:2px solid var(--outline-strong);
  border-radius:12px; padding:15px; width:220px; text-align:center; color:var(--text);
  box-shadow:0 0 10px color-mix(in srgb, var(--accent) 20%, transparent);
  transition:transform .2s;
}
.helsoft .module-bubble:hover{ transform:scale(1.03); }
.helsoft .module-icon{ width:48px; height:48px; object-fit:contain; margin-bottom:10px; }
.helsoft .module-title{ font-weight:700; font-size:16px; margin-bottom:5px; }
.helsoft .module-desc{ font-size:13px; margin-bottom:10px; color:#ccc; }
.helsoft .btn-small{
  padding:5px 10px; font-size:.85em; border:none; border-radius:5px; cursor:pointer;
  color:var(--bg); background:var(--accent);
  text-decoration:none; display:inline-block; margin:5px auto;
}
.helsoft .btn-small:hover{ background:var(--accent-600); }

/* =====================================================================
   FORMS (login / contact)
   ===================================================================== */
.helsoft .contact-form,
.helsoft .login-form{
  max-width:450px; margin:40px auto; padding:30px;
  background:var(--bg-soft); border-radius:10px;
  box-shadow:0 0 10px color-mix(in srgb, var(--accent) 30%, transparent);
}
.helsoft .contact-form h2,
.helsoft .login-form h2{
  margin-bottom:20px; color:var(--accent);
}
.helsoft .contact-form input[type="text"],
.helsoft .contact-form input[type="email"],
.helsoft .contact-form input[type="number"],
.helsoft .contact-form textarea,
.helsoft .login-form input[type="text"],
.helsoft .login-form input[type="email"],
.helsoft .login-form input[type="password"],
.helsoft .login-form input[type="tel"],
.helsoft .login-form input[type="number"],
.helsoft .login-form textarea{
  width:100%; max-width:400px; padding:12px;
  border:1px solid var(--field-border); border-radius:6px;
  background:var(--field-bg); color:var(--text);
  font-size:1em; margin-bottom:15px; box-sizing:border-box;
}
.helsoft .contact-form textarea{ min-height:150px; resize:vertical; }
.helsoft .login-form textarea{ min-height:80px; resize:vertical; }
.helsoft .login-form input[type="checkbox"]{
  accent-color:var(--accent); transform:scale(1.2); cursor:pointer;
}
.helsoft .login-form label{
  display:flex; align-items:center; gap:10px; font-size:.95em;
  color:var(--text); margin-bottom:15px;
}
.helsoft .login-form .g-recaptcha{
  margin:20px auto; display:flex; justify-content:center;
}
.helsoft .contact-form button.btn,
.helsoft .login-form button.btn{
  padding:12px 24px; border:none; background:var(--accent); color:var(--bg);
  border-radius:25px; cursor:pointer; font-size:1em; transition:background .3s ease;
}
.helsoft .contact-form button.btn:hover,
.helsoft .login-form button.btn:hover{ background:var(--accent-600); color:#fff; }

/* Validace */
.helsoft .form-group{ position:relative; margin-bottom:20px; }
.helsoft .status-icon{ position:absolute; right:15px; top:12px; font-size:18px; pointer-events:none; }
.helsoft input.error, .helsoft textarea.error{
  border:2px solid red !important; background:#2e0000; color:#fff;
}

/* =====================================================================
   OBRÁZKY v DLAŽDICÍCH + POPUP
   ===================================================================== */
.helsoft .tile .icon-header{
  width: clamp(64px, 9vw, 96px);
  height: clamp(64px, 9vw, 96px);
  object-fit: contain; display:block; margin:0 auto 12px;
}
.helsoft .tile img{
  max-width:100%; height:auto; display:block; margin-left:auto; margin-right:auto;
}
.helsoft .popup img,
.helsoft .modal img,
.helsoft .overlay img{
  max-width:100%; height:auto; display:block; margin:0 auto;
}
.helsoft .tile-img{
  max-width:100%; max-height:120px; object-fit:contain;
  display:block; margin:0 auto 10px auto;
}
@media (max-width:600px){
  .helsoft .tile-img{ max-height:80px; }
}

/* =====================================================================
   UNIVERZÁLNÍ DLAŽDICE – varianty v modulech
   ===================================================================== */
.helsoft .vozidla-boxy,
.helsoft .dlazdice-container,
.helsoft .tile-wrapper{
  display:flex; flex-wrap:wrap; gap:18px;
  justify-content:center; align-items:stretch;
}
.helsoft .vozidlo-tile,
.helsoft .dlazdice,
.helsoft .polozka-tile{
  position:relative; background:var(--bg-soft); color:var(--text);
  border:2px solid var(--outline-strong); border-radius:12px;
  padding:16px; text-align:center; min-width:200px; min-height:180px;
  box-shadow:0 0 12px color-mix(in srgb, var(--accent) 28%, transparent);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.helsoft .tile:hover,
.helsoft .vozidlo-tile:hover,
.helsoft .dlazdice:hover,
.helsoft .polozka-tile:hover{
  transform:translateY(-2px);
  border-color:var(--accent);
  box-shadow:0 0 18px color-mix(in srgb, var(--accent) 50%, transparent);
  cursor:pointer;
}
.helsoft .tile:focus-within,
.helsoft .vozidlo-tile:focus-within,
.helsoft .dlazdice:focus-within,
.helsoft .polozka-tile:focus-within{
  outline:0;
  border-color:var(--accent);
  box-shadow:0 0 0 3px var(--accent-200);
}
.helsoft .vozidlo-tile img,
.helsoft .dlazdice .obrazek img,
.helsoft .polozka-tile .tile-img,
.helsoft .tile-img{
  width: clamp(64px, 9vw, 96px);
  height: clamp(64px, 9vw, 96px);
  object-fit: contain; display:block; margin:0 auto 12px;
}
.helsoft .tile-title,
.helsoft .vozidlo-tile h3,
.helsoft .dlazdice .nazev,
.helsoft .polozka-tile strong{
  margin:0 0 6px; font-weight:700; font-size:clamp(14px, 1.9vw, 16px); color:var(--text);
}
.helsoft .tile-text,
.helsoft .vozidlo-tile p,
.helsoft .dlazdice .info,
.helsoft .polozka-tile .tile-meta{
  font-size:.95em; color:var(--muted); margin:4px 0 0;
}

/* Klikací overlay přes celou dlaždici */
.helsoft .overlay-link{
  position:absolute; inset:0; border-radius:inherit; z-index:1;
}

/* Akční prvky v rozích */
.helsoft .vozidlo-tile .tile-delete,
.helsoft .vozidlo-tile .tile-doc{
  position:absolute; bottom:10px; z-index:3;
}
.helsoft .vozidlo-tile .tile-delete{ left:10px; }
.helsoft .vozidlo-tile .tile-doc{ right:10px; }
.helsoft .vozidlo-tile .tile-delete button,
.helsoft .vozidlo-tile .tile-doc button,
.helsoft .vozidlo-tile .tile-doc label{
  position:relative; z-index:4;
}

@media (max-width:520px){
  .helsoft .tile,
  .helsoft .vozidlo-tile,
  .helsoft .dlazdice,
  .helsoft .polozka-tile{
    min-width:160px; padding:12px;
  }
}

/* Ikonová mini-tlačítka */
.helsoft .btn-icon{
  display:inline-grid; place-items:center;
  width:32px; height:32px; border-radius:8px;
  border:1px solid var(--outline);
  background:var(--bg-soft); color:var(--text);
  font-size:18px; line-height:1; cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.helsoft .btn-icon:hover{
  transform:translateY(-1px);
  border-color:var(--accent);
  box-shadow:0 0 10px color-mix(in srgb, var(--accent) 40%, transparent);
}
.helsoft .btn-icon.danger{ border-color: var(--danger); color: var(--danger); }
.helsoft .btn-icon.danger:hover{
  box-shadow: 0 0 10px color-mix(in srgb, var(--danger) 40%, transparent);
}

/* Skrytý nativní file input */
.helsoft .visually-hidden{
  position:absolute !important;
  width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0);
  white-space:nowrap; border:0;
}

/* =====================================================================
   POPUP / OVERLAY (shared)
   ===================================================================== */
#popupOverlay,
.popup-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.6);
  z-index:9998; display:none;
}
#popupBublina,
.popup{
  position:fixed; top:50%; left:50%;
  transform:translate(-50%, -50%);
  background:var(--bg-soft); color:var(--text);
  border:1px solid var(--outline-strong); border-radius:12px;
  box-shadow:0 8px 40px rgba(0,0,0,.35);
  max-width:min(1200px, 92vw); max-height:90vh;
  overflow:auto; padding:16px; z-index:9999; display:none;
}
.popup-overlay.is-open, #popupOverlay.is-open{ display:block; }
.popup.is-open, #popupBublina.is-open{ display:block; }

/* =====================================================================
   INFO „i“ – tooltip na dlaždicích
   ===================================================================== */
.helsoft .info-btn{
  position:absolute; top:10px; right:10px; z-index:4;
  width:28px; height:28px; border-radius:8px;
  border:1px solid var(--outline); background:var(--bg-soft);
  color:var(--text); font-weight:700; line-height:1; cursor:pointer;
  display:grid; place-items:center;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.helsoft .info-btn:hover,
.helsoft .info-btn:focus{
  transform:translateY(-1px);
  border-color:var(--accent);
  box-shadow:0 0 10px color-mix(in srgb, var(--accent) 40%, transparent);
  outline:0;
}
.helsoft .tooltip{
  position:absolute; right:10px; top:10px; z-index:5;
  transform: translateY(calc(-100% - 12px)) scale(.98);
  transform-origin: bottom right;
  background:linear-gradient(180deg, var(--bg-soft), #141414);
  color:var(--text);
  border:1px solid var(--outline-strong);
  border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.55), 0 0 18px var(--accent-200);
  padding:12px 14px; width:min(280px, 72vw);
  font-size:.95rem; text-align:left;
  opacity:0; pointer-events:none; transition:.16s ease;
}
.helsoft .tooltip::after{
  content:""; position:absolute; right:16px; bottom:-8px;
  width:10px; height:10px; transform:rotate(45deg);
  background:linear-gradient(180deg, var(--bg-soft), #141414);
  border-right:1px solid var(--outline-strong);
  border-bottom:1px solid var(--outline-strong);
}
/* show on hover/focus OR when tile[data-tip-open="1"] (mobil) */
.helsoft .info-btn:hover + .tooltip,
.helsoft .info-btn:focus + .tooltip,
.helsoft .tile[data-tip-open="1"] .tooltip{
  opacity:1; pointer-events:auto; transform: translateY(calc(-100% - 12px)) scale(1);
}
/* vycentrování info nahoru doprostřed (volitelné) */
.helsoft .tile.info-center .info-btn{ top:12px; left:50%; right:auto; transform:translateX(-50%); }
.helsoft .tile.info-center .tooltip{ left:50%; right:auto; transform:translate(-50%, calc(-100% - 12px)) scale(.98); }
.helsoft .tile.info-center .info-btn:hover + .tooltip,
.helsoft .tile.info-center .info-btn:focus + .tooltip,
.helsoft .tile.info-center[data-tip-open="1"] .tooltip{
  transform:translate(-50%, calc(-100% - 12px)) scale(1);
}

/* =====================================================================
   IMPORT POLOŽEK (popup) – izolovaný vzhled
   ===================================================================== */
.bubble-small .tile-wrapper{
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.bubble-small .polozka-tile{
  background: var(--bg-soft) !important;
  border: 2px solid var(--outline-strong) !important;
  border-radius: 14px !important;
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 18%, transparent) !important;
  min-height: 260px !important;
  padding: 16px 16px 10px !important;

  display: grid !important;
  grid-template-rows: auto 110px auto auto; /* titulek / náhled / meta / plus */
  align-items: center; justify-items: center; text-align: center;

  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
/* možnost schovat položku přes filtr (přetluče grid !important) */
.bubble-small .polozka-tile.is-hidden{ display:none !important; }

.bubble-small .polozka-tile > strong{
  font-weight: 700; font-size: 16px; line-height: 1.25;
  margin: 2px 6px 6px;
  /* clamping – standard + prefix pro starší prohlížeče */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.bubble-small .polozka-tile .tile-img{
  width: 110px; height: 110px; max-width: none; max-height: none;
  object-fit: contain; background:#151515;
  border:1px solid var(--field-border); border-radius:10px; padding:6px;
  display:block;
}
.bubble-small .polozka-tile .tile-meta{
  font-size:13px; color:var(--muted); margin-top:6px;
}
.bubble-small .polozka-tile .tile-icon{
  font-size:34px; line-height:1; margin-top:6px; opacity:.9;
}
.bubble-small .polozka-tile:hover{
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 38%, transparent);
}
.bubble-small .polozka-tile.vybrano{
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px var(--accent-200),
             0 0 32px color-mix(in srgb, var(--accent) 55%, transparent) !important;
}
.bubble-small .polozka-tile.uz-ve-skladu,
.bubble-small .polozka-tile.disabled{
  opacity:.55; filter:grayscale(.25); pointer-events:none;
}
.bubble-small .polozka-tile:focus{
  outline:0; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-200);
}

/* volitelné: lišta filtrů v popupu */
.bubble-small .filtr-bar{
  display:flex; flex-wrap:wrap; gap:8px 12px; align-items:center;
  margin:8px 0 12px;
}
.bubble-small .filtr-bar select,
.bubble-small .filtr-bar input[type="text"]{
  background:var(--field-bg); color:var(--text);
  border:1px solid var(--field-border); border-radius:8px;
  padding:8px 10px;
}

@media (max-width: 680px){
  .bubble-small .tile-wrapper{
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
  }
  .bubble-small .polozka-tile{
    min-height: 220px !important;
    grid-template-rows: auto 96px auto auto;
  }
  .bubble-small .polozka-tile .tile-img{
    width: 96px; height: 96px; padding:4px;
  }
}

/* =====================================================================
   PŘÍSTUPNOST / REDUCED MOTION + fallback stínů
   ===================================================================== */
@media (prefers-reduced-motion: reduce){
  .helsoft *{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
}
@supports not (color: color-mix(in srgb, black 50%, white 50%)) {
  .helsoft .tile, .helsoft .vozidlo-tile, .bubble-small .polozka-tile{
    box-shadow: 0 0 16px rgba(0,0,0,.35);
  }
}

/* =====================================================================
   LEGENDA (rychlá mapa tříd)
   ---------------------------------------------------------------------
   .helsoft ........... namespace pro HelSoft UI (obal celé stránky)
   HEADER ............. .site-header, .header-inner, .brand, .nav-toggle,
                        .nav-menu, .user-area, .user-pill, .user-avatar,
                        .user-email, .logout
   MAIN/CTA ........... main, h1, .subtitle, .btn
   DASHBOARD .......... .tile-container, .tile, .tile-icon, .tile-text,
                        .overlay-link, .icon-header
   TABLES/ROLES ....... .styled-table, .role-grid, .roles-grid label, .role-item
   MODULE CARDS ....... .module-container, .module-bubble, .module-icon,
                        .module-title, .module-desc, .btn-small
   FORMS .............. .contact-form, .login-form, .form-group, .status-icon,
                        .g-recaptcha, input.error, textarea.error
   POPUP/OVERLAY ...... #popupOverlay, #popupBublina, .popup-overlay.is-open, .popup.is-open
   TOOLTIP „i“ ........ .info-btn, .tooltip, .tile[data-tip-open="1"], .tile.info-center
   IMPORT (popup) ..... .bubble-small (scope), .filtr-bar, .tile-wrapper,
                        .polozka-tile (+ .vybrano/.disabled/.is-hidden),
                        .tile-img, .tile-meta, .tile-icon
   ===================================================================== */

/* === Import – „kill-switch“ pro filtr (nech úplně poslední) ========= */
#popupBublina .polozka-tile.is-hidden,
.bubble-small .tile-wrapper .polozka-tile.is-hidden,
.bubble-small .polozka-tile.is-hidden{
  display: none !important;
}
