/* ============================================================
   MFX Parser — page layouts (Matflixx dark)
   ============================================================ */

.stack { display: flex; flex-direction: column; gap: var(--gap); min-width: 0; }

/* Fill the viewport height so there is no dead space below the dashboard */
.dash3--fill { min-height: calc(100vh - var(--nav-h) - 44px); }
.dash3--fill .stack { height: 100%; }
.panel--grow { flex: 1 1 0; display: flex; flex-direction: column; min-height: 0; }
.panel--grow .panel-header { flex: 0 0 auto; }
.scroll-area { overflow-y: auto; min-height: 0; flex: 1 1 auto; }
.panel--grow .bars { flex: 1 1 auto; height: auto; min-height: 130px; }
.panel--grow .area-chart { flex: 1 1 auto; height: auto; min-height: 130px; }
.panel--grow .meta-row { flex: 0 0 auto; }

/* Dashboard: 3 columns (Übersicht/Errors/Auslastung · Running/Next · History) */
.dash3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); align-items: stretch; }
.dash3 .col-history { display: flex; }
.dash3 .col-history .panel { flex: 1; display: flex; flex-direction: column; }
.list-stack { display: flex; flex-direction: column; gap: 10px; }
.panel--fill { flex: 1; }

/* Charts */
.bars { display: flex; align-items: flex-end; gap: 8px; height: 150px; padding: 22px 0 4px; }
.bars__bar { flex: 1; min-width: 0; background: var(--violet); border-radius: 4px 4px 0 0; position: relative; min-height: 2px; }
.bars__bar span { position: absolute; top: -18px; left: 0; right: 0; text-align: center; font-size: 11px; font-weight: 600; color: var(--ink-2); font-family: var(--f-mono); }
.bars__axis { display: flex; font-family: var(--f-mono); font-size: 10px; color: var(--ink-4); margin-top: 6px; }
.bars__axis span { flex: 1; text-align: center; }
/* Utilization chart: % y-axis, per-day dots, hover tooltip, date x-axis */
.area-chart { display: grid; grid-template-columns: 38px 1fr; grid-template-rows: 1fr 16px; gap: 2px 6px; height: 170px; margin-top: 10px; }
.area-y { grid-row: 1; grid-column: 1; display: flex; flex-direction: column; justify-content: space-between; text-align: right; padding-right: 4px; font-family: var(--f-mono); font-size: 9px; color: var(--ink-4); }
.area-y span { line-height: 1; transform: translateY(-4px); }
.area-y span:last-child { transform: translateY(4px); }
.area-plot { grid-row: 1; grid-column: 2; position: relative; overflow: visible; border-bottom: 1px solid var(--line-faint); }
.area-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.area-threshold { position: absolute; left: 0; right: 0; height: 0; border-top: 1px dashed var(--st-error); opacity: 0.8; }
.area-threshold span { position: absolute; right: 0; top: -12px; font-family: var(--f-mono); font-size: 9px; color: var(--st-error); }
.area-dot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); border: 2px solid var(--panel-solid); transform: translate(-50%, 50%); cursor: pointer; transition: background 0.12s, transform 0.12s; z-index: 2; }
.area-dot::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; }
.area-dot:hover { background: var(--accent-hover); transform: translate(-50%, 50%) scale(1.25); z-index: 4; }
.area-tip { display: none; position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); background: var(--panel-solid); border: 1px solid var(--line); border-radius: 8px; padding: 5px 9px; font-family: var(--f-mono); font-size: 11px; white-space: nowrap; color: var(--ink); box-shadow: var(--shadow-modal); }
.area-dot:hover .area-tip { display: block; }
.area-x { grid-row: 2; grid-column: 2; display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 9px; color: var(--ink-4); }
.area-x span { flex: 1; text-align: center; }
.area-x span:first-child { text-align: left; }
.area-x span:last-child { text-align: right; }
.meta-row { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; font-family: var(--f-mono); font-size: 11px; color: var(--ink-4); }

/* Parser card (dashboard lists) */
.parser-card {
  background: var(--row); border: 1px solid var(--line-faint); border-radius: var(--r-sub);
  padding: 12px 14px; display: flex; align-items: center; gap: 14px; cursor: pointer;
  transition: background 0.12s, border-color 0.12s, transform 0.08s;
}
.parser-card:hover { background: var(--row-hover); border-color: var(--line-strong); transform: translateY(-1px); }
.parser-logo { width: 42px; height: 42px; border-radius: 9px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.parser-logo img { width: 30px; height: 30px; object-fit: contain; }
.parser-logo--lg { width: 60px; height: 60px; border-radius: 12px; }
.parser-logo--lg img { width: 44px; height: 44px; }
.parser-logo__txt { font-family: var(--f-display); font-weight: 800; font-size: 9px; letter-spacing: 0.04em; color: var(--ink-3); }
.parser-card__id { flex: 1; min-width: 0; }
.parser-card__name { font-size: 15px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.parser-card__time { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.chev { color: var(--ink-4); display: inline-flex; }
.chev img, .chev svg { width: 18px; height: 18px; }

/* Pipeline (compact, on cards) */
.pipeline--mini { gap: 8px; }
.pipeline--mini .stage-ic { width: 18px; height: 18px; }
.pipeline--mini .stage-bar { width: 22px; }

/* Parsers list (dark dense table) ---------------------------- */
.ptable { display: flex; flex-direction: column; }
.col-header, .list-row {
  display: grid; align-items: center; gap: 14px;
  grid-template-columns: 52px minmax(200px, 1.6fr) 100px 120px 150px 90px 26px 28px;
  padding: 0 14px;
}
.col-header { height: 42px; color: var(--ink-3); font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
.col-header img, .col-header svg { width: 16px; height: 16px; opacity: 0.7; }
.list-row { height: 58px; border-radius: 10px; cursor: pointer; background: var(--row); margin-bottom: 6px; border: 1px solid var(--line-faint); transition: background 0.12s, border-color 0.12s; }
.list-row:hover { background: var(--row-hover); border-color: var(--line-strong); }
.list-row__logo { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.list-row__logo img { width: 28px; height: 28px; object-fit: contain; }
.list-row__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.list-row__meta { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }

.filter-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.filter-bar .search { flex: 0 0 320px; max-width: 100%; }
.alarm { color: var(--st-error); display: inline-flex; flex-shrink: 0; animation: pulse 1.4s ease-in-out infinite; }
.alarm svg { width: 18px; height: 18px; }

/* Status filter chips (dashboard / scheduler) */
.chips { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; height: 32px; padding: 0 13px;
  border-radius: 999px; border: 1px solid var(--line-strong); background: var(--sub-panel);
  color: var(--ink-2); font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.12s;
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.chip:hover { border-color: var(--line-strong); color: var(--ink); }
.chip.active { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.chip[data-status="done"] .dot { background: var(--st-done); }
.chip[data-status="error"] .dot { background: var(--st-error); }
.chip[data-status="running"] .dot { background: var(--st-running); }
.chip[data-status="pending"] .dot { background: var(--st-wait); }
.chip[data-status="all"] .dot { background: var(--ink-3); }

/* Parser detail --------------------------------------------- */
.detail-grid { display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: var(--gap); align-items: start; }
.detail-col { display: flex; flex-direction: column; gap: 10px; }
.detail-toolbar { display: flex; align-items: center; gap: 8px; background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 8px 12px; min-height: 54px; }
.detail-toolbar--right { justify-content: space-between; }
.toolbar-stages { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tool-ic { background: none; border: none; cursor: pointer; color: var(--ink-2); display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 8px; font-weight: 600; font-size: 14px; }
.tool-ic:hover { background: var(--row-hover); color: var(--ink); }
.tool-ic img { width: 18px; height: 18px; }

.id-card { display: flex; flex-direction: column; gap: 12px; }
.id-card__head { display: flex; gap: 14px; align-items: center; }
.id-card__name { font-family: var(--f-display); font-size: 20px; font-weight: 700; margin: 0; color: var(--ink); }
.id-card__meta { display: flex; gap: 14px; margin-top: 6px; font-family: var(--f-mono); font-size: 12px; color: var(--ink-3); }
.id-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.id-card__meta img { width: 14px; height: 14px; opacity: 0.7; }

.info-list { display: flex; flex-direction: column; border: 1px solid var(--line-faint); border-radius: var(--r-sub); overflow: hidden; }
.info-row { display: grid; grid-template-columns: 76px 1fr; align-items: stretch; border-bottom: 1px solid var(--line-faint); }
.info-row:last-child { border-bottom: none; }
.info-row__label { background: rgba(255,255,255,0.05); border-right: 1px solid var(--line-faint); padding: 12px; font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); display: flex; align-items: center; }
.info-row__value { padding: 12px 14px; font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }

/* Right detail column fills the page height */
.detail-grid { min-height: calc(100vh - var(--nav-h) - 44px); grid-template-rows: 1fr; }
.detail-grid > .detail-col:first-child { align-self: start; }
.detail-col { display: flex; flex-direction: column; gap: 10px; min-height: 0; }
.detail-col .detail-view { flex: 1; display: flex; flex-direction: column; min-height: 0; }
.content-surface { flex: 1; min-height: calc(100vh - 250px); background: var(--inset); border: 1px solid var(--line-faint); border-radius: var(--r-sub); overflow: auto; }
.log-view { font-family: var(--f-mono); font-size: 13px; color: var(--ink-2); padding: 18px 22px; line-height: 1.7; overflow: auto; white-space: pre-wrap; word-break: break-word; }
.log-empty { color: var(--ink-4); font-style: italic; padding: 18px 22px; }
.run-link { display: block; padding: 9px 12px; border-radius: 8px; cursor: pointer; font-family: var(--f-mono); font-size: 13px; color: var(--ink-2); }
.run-link:hover { background: var(--accent-soft); color: var(--accent); }
.code-editor-area { display: block; width: 100%; min-height: calc(100vh - 300px); border: none; background: var(--inset); color: var(--ink-2); font-family: var(--f-code); font-size: 13px; line-height: 1.65; padding: 18px 22px; resize: none; outline: none; tab-size: 4; }

/* Inline messages (next to the action button) */
.inline-msg { font-size: 13px; font-weight: 600; min-height: 18px; display: inline-flex; align-items: center; }
.inline-msg.ok { color: var(--st-done); }
.inline-msg.err { color: var(--st-error); }
.file-name { font-size: 13px; color: var(--ink-3); }

/* Editable mapping table (two cards per row, like the original) */
.map-head { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
.map-card-h { display: grid; align-items: center; gap: 12px; padding: 0 14px; font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-3); }
.h-left { grid-template-columns: 1.5fr 0.7fr; }
.h-right { grid-template-columns: 1.3fr 1fr 1.3fr 38px; }
.map-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 10px; }
.map-card { background: var(--sub-panel); border: 1px solid var(--line-faint); border-radius: 12px; padding: 12px 14px; display: grid; align-items: center; gap: 12px; }
.map-card--left { grid-template-columns: 1.5fr 0.7fr; }
.map-card--right { grid-template-columns: 1.3fr 1fr 1.3fr 38px; }
.map-id { color: var(--ink-3); }
.map-val { color: var(--ink-2); font-size: 13px; overflow: hidden; text-overflow: ellipsis; }
.map-rowmsg { grid-column: 1 / -1; padding-left: 14px; margin-top: -4px; }
.map-card .input { height: 38px; }

/* Symbol typeahead suggestions */
.typeahead { position: relative; }
.typeahead__list { position: absolute; left: 0; right: 0; top: 100%; margin-top: 4px; background: var(--panel-solid); border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-modal); z-index: 40; max-height: 240px; overflow: auto; }
.typeahead__item { padding: 9px 12px; cursor: pointer; display: flex; flex-direction: column; gap: 2px; }
.typeahead__item:hover, .typeahead__item.active { background: var(--accent-soft); }
.typeahead__sym { font-family: var(--f-mono); font-size: 13px; color: var(--ink); font-weight: 600; }
.typeahead__meta { font-size: 11px; color: var(--ink-3); }

.data-view { padding: 14px; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; background: rgba(255,255,255,0.05); font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-3); font-weight: 600; padding: 11px 12px; }
.data-table td { padding: 12px; border-bottom: 1px solid var(--line-faint); vertical-align: middle; }
.data-table tbody tr:hover td { background: var(--row-hover); }
.src-name { font-weight: 600; color: var(--ink); }
.src-id { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.data-table .select { height: 36px; }

/* Scheduler — week grid -------------------------------------- */
.scheduler-toolbar { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.wk-grid { display: grid; grid-template-columns: 130px repeat(7, minmax(0, 1fr)); gap: 8px; }
.wk-head { margin-bottom: 8px; }
.wk-day {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  background: var(--sub-panel); border: 1px solid var(--line-faint); border-radius: 10px; padding: 8px 0;
}
.wk-day.today { background: var(--accent); border-color: var(--accent); color: #0b1422; }
.wk-dow { font-family: var(--f-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.8; }
.wk-date { font-family: var(--f-display); font-size: 20px; font-weight: 700; line-height: 1; }
.wk-bucket { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; display: flex; align-items: flex-start; padding-top: 8px; }
.wk-cell { min-height: 64px; background: rgba(255,255,255,0.03); border: 1px solid var(--line-faint); border-radius: 10px; padding: 6px; display: flex; flex-direction: column; gap: 5px; margin-bottom: 8px; }
.wk-cell.today { background: var(--accent-soft); border-color: rgba(91,174,240,0.3); }
.wk-slot {
  display: flex; align-items: center; gap: 6px; padding: 5px 7px; border-radius: 8px;
  font-family: var(--f-mono); font-size: 11px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.08s, border-color 0.12s, opacity 0.12s;
}
.wk-slot:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.wk-slot__logo { width: 20px; height: 20px; flex-shrink: 0; }
.wk-slot__logo .parser-logo { width: 20px; height: 20px; border-radius: 5px; }
.wk-slot__logo .parser-logo img { width: 16px; height: 16px; }
.wk-slot__name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; }
.wk-slot__time { opacity: 0.75; font-size: 10px; flex-shrink: 0; }
.wk-slot.s-done    { background: var(--st-done-bg);    color: var(--st-done); }
.wk-slot.s-error   { background: var(--st-error-bg);   color: var(--st-error); }
.wk-slot.s-running { background: var(--st-running-bg); color: var(--st-running); }
.wk-slot.s-pending { background: var(--st-wait-bg);    color: var(--st-wait); }
.wk-slot.dim { opacity: 0.12; }

/* Scheduler — intraday (multi-run) timeline */
.intraday { display: flex; flex-direction: column; gap: 8px; }
.intraday-row { display: grid; grid-template-columns: 250px 1fr; gap: 14px; align-items: center; }
.intraday-head { margin-bottom: 2px; }
.intraday-label { display: flex; align-items: center; gap: 8px; min-width: 0; text-decoration: none; }
.intraday .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; background: var(--st-idle); }
.intraday-name { font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.intraday-meta { font-family: var(--f-mono); font-size: 11px; color: var(--ink-3); margin-left: auto; white-space: nowrap; padding-left: 8px; }
.intraday-track { position: relative; height: 38px; background: rgba(255,255,255,0.04); border: 1px solid var(--line-faint); border-radius: 8px; overflow: hidden; display: block; }
.intraday-track.ruler { background: transparent; border: none; height: 18px; }
.rtick { position: absolute; top: 0; transform: translateX(-50%); font-family: var(--f-mono); font-size: 10px; color: var(--ink-4); }
.rtick:first-child { transform: none; }
.gline { position: absolute; top: 0; bottom: 0; width: 1px; background: var(--line-faint); }
.run-tick { position: absolute; top: 7px; bottom: 7px; width: 3px; border-radius: 2px; transform: translateX(-50%); background: var(--st-running); }
.t-done { background: var(--st-done); } .t-error { background: var(--st-error); }
.t-running { background: var(--st-running); } .t-pending { background: var(--st-wait); }
.dot.s-done { background: var(--st-done); } .dot.s-error { background: var(--st-error); }
.dot.s-running { background: var(--st-running); } .dot.s-pending { background: var(--st-wait); }

/* Settings — 3 columns -------------------------------------- */
.settings-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); align-items: stretch; }
.settings-grid .stack { gap: var(--gap); }
/* Spalten gleich hoch: letzte Panels fuellen bis zur gemeinsamen Unterkante.
   Die dritte Spalte (Parser Matching / Language) wird per JS exakt auf die
   Unterkanten von Master Data API bzw. Number of Threads ausgerichtet. */
.settings-grid .stack > .panel { display: flex; flex-direction: column; }
.settings-grid .stack > .panel:last-child { flex: 1 1 auto; }
/* Drag & drop Zonen (Settings-Uploads): im Ruhezustand unsichtbar.
   Stitches erscheinen nur, waehrend eine DATEI ueber die Seite gezogen
   wird (body.file-drag-active); das konkrete Feld hechtet zusaetzlich
   hellblau auf (.drop-hover). */
.dropzone { border-radius: 12px; }
body.file-drag-active .dropzone { outline: 2px dashed var(--accent); outline-offset: 4px; }
.dropzone.drop-hover { outline: 2px dashed var(--accent); outline-offset: 4px; background: var(--accent-soft); }
.user-row { display: flex; align-items: center; gap: 12px; padding: 11px 4px; border-bottom: 1px solid var(--line-faint); }
.user-row:last-child { border-bottom: none; }
.user-row__name { flex: 1; font-size: 15px; color: var(--ink); }
.dropzone { display: block; width: 100%; border: 1px dashed var(--line-strong); border-radius: 10px; padding: 22px; text-align: center; color: var(--ink-3); font-size: 14px; cursor: pointer; transition: border-color 0.12s, background 0.12s; margin-bottom: 10px; }
.dropzone:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--ink-2); }
.dropzone.has-file { border-color: var(--st-done); color: var(--st-done); }
.section-title { font-family: var(--f-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); margin: 0 0 10px; }

/* Avatar (initials) ----------------------------------------- */
.avatar { width: 34px; height: 34px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #0b1422; background: linear-gradient(135deg, #5BAEF0, #a9d6f7); flex-shrink: 0; }
.avatar.sm { width: 26px; height: 26px; font-size: 10px; }

/* Login ------------------------------------------------------ */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; }
.login-card { width: 100%; max-width: 380px; }
.login-brand { display: flex; justify-content: center; margin-bottom: 24px; }
.login-brand img { height: 38px; }
.login-error { background: var(--st-error-bg); color: var(--st-error); border-radius: 10px; padding: 11px 14px; font-size: 14px; margin-bottom: 14px; }
.login-field + .login-field { margin-top: 14px; }

/* Responsive ------------------------------------------------- */
@media (max-width: 1280px) {
  .dash3 { grid-template-columns: 1fr 1fr; }
  .dash3 .col-history { grid-column: span 2; }
  .settings-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .dash3, .settings-grid { grid-template-columns: 1fr; }
  .dash3 .col-history { grid-column: auto; }
  .detail-grid { grid-template-columns: 1fr; }
  .topnav { gap: 14px; padding: 0 14px; overflow-x: auto; }
}

/* Info-Bubble in der Parser-Liste ------------------------------------------
   Ruhezustand unsichtbar; erscheint schwach beim Hover ueber die Zeile und
   voll deckend, sobald die Maus auf dem Symbol ist. Tooltip zeigt den Text. */
.info-bubble {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #fff; color: #fff;
  background: transparent; font-size: 12px; font-weight: 600; line-height: 1;
  font-family: var(--f-ui); text-decoration: none;
  opacity: 0; transition: opacity 0.14s, background 0.14s, color 0.14s;
  position: relative; cursor: pointer; justify-self: center;
}
.list-row:hover .info-bubble { opacity: 0.45; }
.list-row .info-bubble:hover,
.list-row .info-bubble:focus-visible {
  opacity: 1; outline: none;
  background: #fff; border-color: #fff; color: #14141c;
}
/* Tooltip ueber dem Symbol */
.info-bubble[data-info]::after {
  content: attr(data-info);
  position: absolute; bottom: calc(100% + 8px); right: 0;
  min-width: 160px; max-width: 320px; width: max-content;
  padding: 8px 10px; border-radius: 8px;
  background: var(--row-hover, #1c1c20); color: var(--ink);
  border: 1px solid var(--line-strong); box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  font-size: 12px; font-weight: 400; line-height: 1.45; text-align: left;
  white-space: pre-wrap; opacity: 0; pointer-events: none;
  transition: opacity 0.14s; z-index: 40;
}
.info-bubble[data-info]:hover::after,
.info-bubble[data-info]:focus-visible::after { opacity: 1; }

/* Kurzes Hervorheben der Info-Textbox, wenn man ueber die Bubble kommt */
.info-focus-flash { border-color: var(--accent) !important; box-shadow: 0 0 0 3px var(--accent-soft); }
