/* ===== Puantaj Sistemi — Arayüz ===== */
:root {
  --primary: #1665c0;
  --primary-dark: #0d47a1;
  --primary-light: #e8f1fc;
  --bg: #f4f6fa;
  --surface: #ffffff;
  --text: #1a2233;
  --muted: #6b7688;
  --border: #e2e7ef;
  --ok: #1e8e3e;
  --ok-bg: #e6f4ea;
  --warn: #e37400;
  --warn-bg: #fef3e0;
  --danger: #d32f2f;
  --danger-bg: #fdeaea;
  --info: #1565c0;
  --info-bg: #e7f0fb;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(20,30,50,.08), 0 1px 2px rgba(20,30,50,.06);
  --shadow-lg: 0 8px 30px rgba(20,30,50,.16);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: var(--bg); color: var(--text); font-size: 14px; line-height: 1.45;
}
button { font-family: inherit; cursor: pointer; }
a { color: var(--primary); text-decoration: none; }
h1,h2,h3,h4 { margin: 0 0 .5em; font-weight: 650; }
.hidden { display: none !important; }
.muted { color: var(--muted); }
.mono { font-variant-numeric: tabular-nums; }

/* ---- Login ---- */
.login-wrap { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 20px; }
.login-card { background: var(--surface); width: 100%; max-width: 380px; border-radius: 16px; box-shadow: var(--shadow-lg); padding: 34px 32px; }
.login-card .logo { text-align: center; margin-bottom: 18px; }
.login-card .logo .badge-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--primary); color:#fff; display:inline-grid; place-items:center; font-size: 26px; font-weight: 700; }
.login-card h2 { text-align: center; margin: 10px 0 2px; }
.login-card p.sub { text-align: center; color: var(--muted); margin: 0 0 22px; font-size: 13px; }

/* ---- Layout ---- */
.app { display: grid; grid-template-columns: 240px 1fr; grid-template-rows: 58px 1fr; height: 100vh; grid-template-areas: "sidebar topbar" "sidebar main"; }
.topbar { grid-area: topbar; background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 22px; }
.topbar .page-title { font-size: 17px; font-weight: 650; }
.topbar .user { display: flex; align-items: center; gap: 12px; }
.topbar .user .who { text-align: right; line-height: 1.2; }
.topbar .user .who .role { font-size: 12px; color: var(--muted); }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--primary-light); color: var(--primary-dark); display: grid; place-items: center; font-weight: 700; }

.sidebar { grid-area: sidebar; background: #10203b; color: #cdd6e4; display: flex; flex-direction: column; overflow-y: auto; }
.sidebar .brand { padding: 16px 20px; font-size: 16px; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar .brand .dot { width: 30px; height: 30px; border-radius: 8px; background: var(--primary); display: grid; place-items: center; font-size: 15px; }
.sidebar .brand .brand-logo { height: 34px; width: auto; flex-shrink: 0; display: block; }
.sidebar nav { padding: 10px 0; flex: 1; }
.sidebar nav a { display: flex; align-items: center; gap: 11px; padding: 10px 20px; color: #cdd6e4; font-size: 14px; border-left: 3px solid transparent; }
.sidebar nav a:hover { background: rgba(255,255,255,.05); color: #fff; }
.sidebar nav a.active { background: rgba(22,101,192,.22); border-left-color: var(--primary); color: #fff; font-weight: 600; }
.sidebar nav a .ico { width: 18px; text-align: center; opacity: .9; }
.sidebar .foot { padding: 12px 20px; font-size: 11px; color: #64748b; border-top: 1px solid rgba(255,255,255,.08); }

.main { grid-area: main; overflow-y: auto; padding: 22px 26px; }
.container { max-width: 1400px; margin: 0 auto; }

/* ---- Cards ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; }
.stat-card { display: flex; align-items: center; gap: 16px; cursor: default; }
.stat-card.clickable { cursor: pointer; transition: transform .08s, box-shadow .12s; }
.stat-card.clickable:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.stat-card .icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; font-size: 24px; }
.stat-card .icon.blue { background: var(--info-bg); }
.stat-card .icon.red { background: var(--danger-bg); }
.stat-card .icon.orange { background: var(--warn-bg); }
.stat-card .val { font-size: 28px; font-weight: 700; line-height: 1; }
.stat-card .lbl { color: var(--muted); font-size: 13px; margin-top: 4px; }

.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; }
.panel-head { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.panel-head h3 { margin: 0; font-size: 15px; }
.panel-body { padding: 16px 18px; }
.panel-body.tight { padding: 0; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--border); background: var(--surface); color: var(--text); padding: 8px 14px; border-radius: 8px; font-size: 13.5px; font-weight: 550; transition: background .1s, border-color .1s; }
.btn:hover { background: #f0f3f8; }
.btn.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn.primary:hover { background: var(--primary-dark); }
.btn.success { background: var(--ok); border-color: var(--ok); color: #fff; }
.btn.success:hover { filter: brightness(.94); }
.btn.danger { background: var(--danger); border-color: var(--danger); color: #fff; }
.btn.ghost { background: transparent; }
.btn.sm { padding: 5px 10px; font-size: 12.5px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Forms ---- */
label.field { display: block; margin-bottom: 14px; }
label.field .lbl { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; color: #38445a; }
input[type=text], input[type=password], input[type=number], input[type=search], select {
  width: 100%; padding: 9px 11px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: #fff; color: var(--text); font-family: inherit;
}
input:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.inline-input { width: auto; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 40px; }
.pw-eye { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 16px; cursor: pointer; opacity: .6; padding: 4px 6px; line-height: 1; border-radius: 6px; }
.pw-eye:hover { opacity: 1; background: #f0f3f8; }

/* ---- Tables ---- */
.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th, .tbl td { padding: 9px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.tbl th { background: #f7f9fc; font-weight: 600; color: #46536b; position: sticky; top: 0; z-index: 2; }
.tbl tbody tr:hover { background: #f8fafd; }
.tbl td.num, .tbl th.num { text-align: right; font-variant-numeric: tabular-nums; }
.table-scroll { overflow: auto; max-height: calc(100vh - 250px); border-radius: var(--radius); }

/* ---- Badges ---- */
.badge { display: inline-block; padding: 2px 9px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge.ok { background: var(--ok-bg); color: var(--ok); }
.badge.warn { background: var(--warn-bg); color: var(--warn); }
.badge.info { background: var(--info-bg); color: var(--info); }
.badge.grey { background: #eef1f6; color: #55617a; }
.badge.danger { background: var(--danger-bg); color: var(--danger); }

/* ---- Segment düğmeleri (liste filtresi: Aktif / Pasif / Tümü) ---- */
.seg { display: inline-flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: #fff; }
.seg-b { border: none; background: transparent; padding: 6px 12px; font-size: 12.5px; font-weight: 600; color: var(--muted); cursor: pointer; border-right: 1px solid var(--border); white-space: nowrap; }
.seg-b:last-child { border-right: none; }
.seg-b:hover { background: #f2f5fa; }
.seg-b.on { background: var(--primary); color: #fff; }

/* ---- Tabs ---- */
.tabs { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--border); margin-bottom: 0; padding: 0 6px; }
.tabs .tab { padding: 10px 15px; border: none; background: none; color: var(--muted); font-size: 13.5px; font-weight: 600; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs .tab:hover { color: var(--text); }
.tabs .tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ---- Puantaj Grid ---- */
.grid-wrap { overflow: auto; max-height: calc(100vh - 230px); border: 1px solid var(--border); border-radius: var(--radius); background:#fff; }
table.puantaj { border-collapse: collapse; font-size: 12.5px; white-space: nowrap; }
table.puantaj th, table.puantaj td { border: 1px solid var(--border); padding: 4px 6px; text-align: center; }
table.puantaj thead th { position: sticky; top: 0; background: #f0f4fa; z-index: 3; font-weight: 600; }
table.puantaj th.wknd { background: #e6ebf3; }
table.puantaj td.name, table.puantaj th.name { text-align: left; position: sticky; left: 0; background: #fff; z-index: 2; min-width: 165px; box-shadow: 1px 0 0 var(--border); }
table.puantaj thead th.name { z-index: 4; background:#f0f4fa; }
table.puantaj td.sira, table.puantaj th.sira { position: sticky; left: 0; }
table.puantaj .day-cell { min-width: 30px; cursor: pointer; font-weight: 600; user-select: none; }
table.puantaj .day-cell.locked { cursor: not-allowed; color: var(--muted); }
table.puantaj .day-cell:hover:not(.locked) { outline: 2px solid var(--primary); outline-offset: -2px; }
/* Elle sabitlenmiş gün (haftasonu/resmi tatil iken çalışıldı olarak işaretlenmiş) */
table.puantaj .day-cell.manuel { position: relative; }
table.puantaj .day-cell.manuel::after { content: ''; position: absolute; top: 0; right: 0; border: 4px solid transparent; border-top-color: #c0392b; border-right-color: #c0392b; }
/* İK Müdürü onayı bekleyen hücre — kesikli turuncu çerçeve */
table.puantaj .day-cell.onay-bekliyor { outline: 2px dashed #e8a33d; outline-offset: -2px; }
.k-N { color: #33415c; }
.k-H { background: #eef1f6; color: #8a95a8; }
.k-T { background: #ffe9e0; color: #c0491f; }
.k-S { background: #e7f0fb; color: #1565c0; }
.k-İ { background: #e3f2ea; color: #1e8e3e; }
.k-E { background: #fdeaea; color: #c62828; font-weight: 700; }
.k-Y, .k-C, .k-K { background: #fff4e0; color: #b26a00; }
td.sum { background: #fafbfd; font-weight: 600; }
table.puantaj td.sum.mesai-var { background: #fff4e0; color: #b26a00; font-weight: 800; }
/* BES (Bireysel Emeklilik) rozeti — puantaj isim hücresinde */
.bes-chip { display: inline-block; margin-left: 7px; padding: 1px 7px; border-radius: 10px; font-size: 10px; font-weight: 700; vertical-align: middle; letter-spacing: .01em; }
.bes-chip.var { background: var(--ok-bg); color: var(--ok); }
.bes-chip.yok { background: #eef1f6; color: #8a95a8; }

/* ---- Code palette popover ---- */
.popover { position: fixed; z-index: 100; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 8px; min-width: 150px; }
.popover .pop-title { font-size: 11px; color: var(--muted); padding: 2px 4px 6px; text-transform: uppercase; letter-spacing: .04em; }
.popover .codes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.popover .codes button { border: 1px solid var(--border); background: #fff; border-radius: 7px; padding: 7px 0; font-weight: 700; font-size: 13px; }
.popover .codes button:hover { background: var(--primary-light); border-color: var(--primary); }
.popover select { margin-top: 8px; }
.popover .pop-reset { margin-top: 8px; width: 100%; border: 1px solid var(--border); background: #f7f8fb; color: var(--muted); border-radius: 7px; padding: 6px 0; font-weight: 600; font-size: 12px; cursor: pointer; }
.popover .pop-reset:hover { background: #eef1f6; color: #33415c; border-color: var(--primary); }

/* ---- Toast ---- */
.toasts { position: fixed; top: 16px; right: 16px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.toast { background: #1f2a3d; color: #fff; padding: 11px 16px; border-radius: 9px; box-shadow: var(--shadow-lg); font-size: 13.5px; min-width: 240px; max-width: 380px; animation: slideIn .18s ease; border-left: 4px solid var(--primary); }
.toast.ok { border-left-color: var(--ok); }
.toast.err { border-left-color: var(--danger); }
.toast.warn { border-left-color: var(--warn); }
@keyframes slideIn { from { transform: translateX(20px); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---- Modal ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.5); display: grid; place-items: center; z-index: 500; padding: 20px; }
.modal { background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); width: 100%; max-width: 520px; max-height: 90vh; overflow: auto; }
.modal.wide { max-width: 760px; }
.modal-head { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { margin: 0; }
.modal-head .x { background: none; border: none; font-size: 22px; color: var(--muted); line-height: 1; }
.modal-body { padding: 18px 20px; }
.modal-foot { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }

/* ---- Misc ---- */
.legend { display: flex; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--muted); align-items: center; }
.legend .item { display: inline-flex; align-items: center; gap: 5px; }
.legend .chip { width: 20px; height: 18px; border-radius: 4px; display: inline-grid; place-items: center; font-weight: 700; font-size: 11px; }
.empty { text-align: center; padding: 50px 20px; color: var(--muted); }
.empty .big { font-size: 40px; margin-bottom: 8px; opacity: .5; }
.search-box { position: relative; max-width: 340px; }
.searchresults { border: 1px solid var(--border); border-radius: 8px; margin-top: 6px; overflow: hidden; }
.searchresults .r { padding: 9px 12px; border-bottom: 1px solid var(--border); cursor: pointer; display: flex; justify-content: space-between; }
.searchresults .r:hover { background: var(--primary-light); }
.checkbox-row { display: flex; align-items: center; gap: 9px; padding: 8px 0; }
.checkbox-row input { width: 17px; height: 17px; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.spacer { flex: 1; }
.note-icon { color: var(--warn); cursor: help; }
.spinner { display: inline-block; width: 16px; height: 16px; border: 2px solid var(--primary-light); border-top-color: var(--primary); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-full { display: grid; place-items: center; padding: 60px; }

/* ===== Dashboard logo banner ===== */
.dash-hero { display: flex; align-items: center; gap: 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 26px; margin-bottom: 22px; }
.dash-logo { height: 84px; width: auto; object-fit: contain; flex-shrink: 0; }
.dash-hero-txt { border-left: 3px solid var(--primary-light); padding-left: 22px; }
.dash-sys { font-size: 18px; font-weight: 700; color: var(--text); }
.dash-welcome { color: var(--muted); margin-top: 6px; font-size: 14px; }
.dash-donem { color: var(--muted); margin-top: 2px; font-size: 13px; }
@media (max-width: 640px) { .dash-hero { flex-direction: column; text-align: center; } .dash-hero-txt { border-left: none; border-top: 3px solid var(--primary-light); padding-left: 0; padding-top: 14px; } }

/* ===== İcra Takip ===== */
.stat-card .icon.green { background: var(--ok-bg); }
.stat-card .icon.gray { background: #eef1f6; }
.inp { width: 100%; padding: 9px 11px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: #fff; color: var(--text); font-family: inherit; }
.inp:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.ara-sonuc { max-height: 200px; overflow-y: auto; }
.ara-it { padding: 8px 10px; border: 1px solid var(--border); border-top: none; cursor: pointer; font-size: 13.5px; }
.ara-it:first-child { border-top: 1px solid var(--border); border-radius: 8px 8px 0 0; }
.ara-it:hover { background: var(--primary-light); }
.tbl.sm th, .tbl.sm td { padding: 5px 9px; font-size: 12.5px; }

.icra-badge { display: inline-block; padding: 2px 9px; border-radius: 20px; font-size: 11.5px; font-weight: 600; margin-left: 6px; }
.icra-badge.icra-aktif { background: var(--info-bg); color: var(--info); }
.icra-badge.icra-bekle { background: var(--warn-bg); color: var(--warn); }
.icra-badge.icra-kapali { background: #eef1f6; color: #7a8699; }

.icra-tbl .icra-grup td { background: #f7f9fc; border-top: 2px solid var(--border); }
.icra-tbl .icra-satir.icra-az td { background: #fff8f6; }
.icra-tbl td.mono, .mono { font-variant-numeric: tabular-nums; font-family: ui-monospace, monospace; }

.icra-dosya { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.icra-dosya.kapali { opacity: .72; }
.icra-dosya.az { border-color: #f0b8ad; }
.icra-dosya-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 14px; background: #f9fafc; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.icra-dosya-head .sira { display: inline-block; background: var(--primary); color: #fff; border-radius: 6px; font-size: 11px; font-weight: 700; padding: 1px 7px; margin-right: 6px; }
.icra-tut { font-size: 13px; }
.k-uyari { color: var(--danger); }
.icra-dosya-body { padding: 12px 14px; }
.icra-progress { height: 8px; background: #eef1f6; border-radius: 6px; overflow: hidden; margin-bottom: 10px; }
.icra-progress > div { height: 100%; background: var(--ok); border-radius: 6px; transition: width .3s; }
.icra-dosya-alt { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.icra-odemeler { margin-top: 10px; border-top: 1px dashed var(--border); padding-top: 8px; }
.icra-odeme-panel .panel-head h3 { color: var(--primary-dark); }

/* ===== Yıllık İzin ===== */
.tbl tr.iz-az td { background: #fff8f6; }
.k-uyari { color: var(--warn); }
.k-neg { color: var(--danger); }
.iz-ozet { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px 22px; }
.iz-ozet > div { display: flex; flex-direction: column; }
.iz-ozet .lbl { font-size: 11.5px; color: var(--muted); margin-bottom: 2px; }
.iz-ozet > div > b { font-size: 15px; }
.iz-ozet .iz-kalan > b { font-size: 18px; }
.iz-bakiye-kutu { background: var(--ok-bg); border-radius: 8px; padding: 10px 12px; margin-bottom: 14px; font-size: 13.5px; }

/* ============================================================
   RESPONSIVE — Tablet & Mobil uyum
   ============================================================ */

/* Hamburger butonu + sidebar arkaplan perdesi (varsayılan: masaüstünde gizli) */
.menu-toggle { display: none; align-items: center; justify-content: center; background: none; border: 1px solid var(--border); border-radius: 8px; font-size: 19px; line-height: 1; padding: 5px 11px; color: var(--text); flex-shrink: 0; }
.menu-toggle:hover { background: #f0f3f8; }
.topbar-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.topbar .page-title { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-backdrop { display: none; }

/* ---- Tablet (≤1024px): daha dar sidebar, sıkı boşluklar, 2 sütun kart ---- */
@media (max-width: 1024px) {
  .app { grid-template-columns: 210px 1fr; }
  .main { padding: 18px 18px; }
  .sidebar nav a { padding: 10px 16px; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .topbar { padding: 0 16px; }
}

/* ---- Tablet dikey & Mobil (≤900px): off-canvas sidebar + hamburger ---- */
@media (max-width: 900px) {
  .app {
    grid-template-columns: 1fr;
    grid-template-rows: 56px 1fr;
    grid-template-areas: "topbar" "main";
  }
  .sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: 264px; max-width: 82vw;
    z-index: 600; transform: translateX(-100%); transition: transform .25s ease;
    box-shadow: var(--shadow-lg);
  }
  .app.nav-open .sidebar { transform: none; }
  .sidebar-backdrop { position: fixed; inset: 0; background: rgba(8,15,30,.5); z-index: 550; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .app.nav-open .sidebar-backdrop { display: block; opacity: 1; pointer-events: auto; }
  .menu-toggle { display: inline-flex; }
  .main { padding: 16px 14px; }
  .table-scroll { max-height: none; }
  .grid-wrap { max-height: calc(100vh - 200px); }
}

/* ---- Mobil (≤560px): tek sütun, sıkı arayüz ---- */
@media (max-width: 560px) {
  body { font-size: 13.5px; }
  .cards { grid-template-columns: 1fr; }
  .main { padding: 12px 11px; }
  .topbar { padding: 0 12px; }
  .topbar .page-title { font-size: 15px; }
  .topbar .user { gap: 8px; }
  .topbar .user .who { display: none; }          /* isim gizlenir, avatar kalır */
  .stat-card .icon { width: 44px; height: 44px; font-size: 20px; }
  .stat-card .val { font-size: 23px; }
  .panel-head { padding: 12px 14px; }
  .panel-body { padding: 12px 14px; }
  .btn { padding: 8px 12px; }
  /* Modallar neredeyse tam ekran */
  .modal-overlay { padding: 10px; }
  .modal, .modal.wide { max-width: 100%; max-height: 94vh; }
  .modal-body { padding: 14px 15px; }
  .modal-head, .modal-foot { padding: 12px 15px; }
  .modal-foot { flex-wrap: wrap; }
  .modal-foot .btn { flex: 1; justify-content: center; }
  /* Modal içi yan yana form satırları alta insin */
  .modal-body [style*="display:flex"], .modal-body [style*="display: flex"] { flex-wrap: wrap; }
  .dash-logo { height: 66px; }
}
