/* BAARA IA — RESPONSIVE WINDOW SYSTEM R1 — ORDERED MODULE DOCK */
.baara-module-dock{
  position:fixed;
  right:max(16px,env(safe-area-inset-right));
  bottom:max(16px,env(safe-area-inset-bottom));
  z-index:1200;
  font-family:Inter,"Segoe UI",Arial,sans-serif;
}
.baara-module-dock>summary{
  list-style:none;
  display:flex;
  align-items:center;
  gap:9px;
  min-height:44px;
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:#071f4f;
  color:#fff;
  box-shadow:0 12px 34px rgba(7,31,79,.24);
  cursor:pointer;
  font-size:13px;
  font-weight:800;
  user-select:none;
}
.baara-module-dock>summary::-webkit-details-marker{display:none}
.baara-module-dock>summary::before{
  content:"☰";
  display:inline-grid;
  place-items:center;
  width:22px;
  height:22px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  font-size:13px;
}
.baara-module-dock[open]>summary::before{content:"×";font-size:18px}
.baara-module-dock>summary:focus-visible{
  outline:3px solid rgba(37,99,235,.38);
  outline-offset:3px;
}
.baara-module-dock-panel{
  position:absolute;
  right:0;
  bottom:54px;
  width:min(390px,calc(100vw - 32px));
  max-height:min(68dvh,620px);
  overflow:auto;
  overscroll-behavior:contain;
  scrollbar-gutter:stable;
  padding:12px;
  border:1px solid #dbe3ef;
  border-radius:18px;
  background:rgba(255,255,255,.98);
  color:#17213b;
  box-shadow:0 24px 70px rgba(7,31,79,.22);
  backdrop-filter:blur(14px);
}
.baara-module-dock-title{
  margin:0 0 9px;
  padding:2px 4px 8px;
  border-bottom:1px solid #e7ecf3;
  color:#071f4f;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.baara-module-dock-section+.baara-module-dock-section{margin-top:12px}
.baara-module-dock-section-label{
  display:block;
  margin:0 0 6px;
  padding:0 4px;
  color:#69758d;
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.baara-module-dock-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:7px;
}
.baara-module-dock-links a{
  min-width:0;
  padding:10px 11px;
  border:1px solid #dfe6f1;
  border-radius:11px;
  background:#f8faff;
  color:#10254d;
  text-decoration:none;
  font-size:12px;
  font-weight:750;
  line-height:1.3;
}
.baara-module-dock-links a:hover{border-color:#b9cae5;background:#eef4ff}
.baara-module-dock-links a:focus-visible{
  outline:3px solid rgba(37,99,235,.28);
  outline-offset:2px;
}
@media(max-width:680px){
  .baara-module-dock{
    right:max(10px,env(safe-area-inset-right));
    bottom:max(10px,env(safe-area-inset-bottom));
  }
  .baara-module-dock>summary{min-height:42px;padding:9px 12px}
  .baara-module-dock-panel{
    position:fixed;
    left:10px;
    right:10px;
    bottom:62px;
    width:auto;
    max-height:min(66dvh,520px);
  }
  .baara-module-dock-links{grid-template-columns:1fr}
}
@media(max-height:620px){
  .baara-module-dock-panel{max-height:calc(100dvh - 86px)}
}
@media print{.baara-module-dock{display:none!important}}
