.sentinel-quicklinks {
  width:100%;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  padding:10px;
  margin:8px 0 14px;
  border:1px solid rgba(80,220,205,.24);
  border-radius:13px;
  background:rgba(3,18,27,.94);
  position:relative;
  z-index:500;
  box-sizing:border-box;
}
.sentinel-quicklinks .ql-menu { position:relative; }
.sentinel-quicklinks .ql-menu summary,
.sentinel-quicklinks .ql-voice-switch {
  display:inline-flex;
  align-items:center;
  min-height:44px;
  box-sizing:border-box;
  border:1px solid rgba(93,139,157,.45);
  border-radius:10px;
  padding:9px 14px;
  color:#effbfc;
  background:#0b2732;
  font-family:inherit;
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  cursor:pointer;
  list-style:none;
}
.sentinel-quicklinks .ql-menu summary::-webkit-details-marker { display:none; }
.sentinel-quicklinks .ql-menu summary::after { content:" ▾"; padding-left:7px; font-size:12px; }
.sentinel-quicklinks .ql-menu[open] summary,
.sentinel-quicklinks .ql-menu.active summary,
.sentinel-quicklinks .ql-menu summary:hover { border-color:#54dfca; }
.sentinel-quicklinks .ql-menu-panel {
  display:grid;
  gap:4px;
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  min-width:200px;
  max-height:min(65vh,520px);
  overflow-y:auto;
  padding:9px;
  border:1px solid #347c86;
  border-radius:11px;
  background:#09232d;
  box-shadow:0 15px 30px rgba(0,0,0,.4);
}
.sentinel-quicklinks .ql-menu:nth-last-of-type(-n+2) .ql-menu-panel { left:auto; right:0; }
.sentinel-quicklinks .ql-menu:not([open]) .ql-menu-panel { display:none; }
.sentinel-quicklinks .ql-menu-panel a {
  display:block;
  padding:9px 10px;
  border-radius:8px;
  color:#def4f3;
  text-decoration:none;
  white-space:nowrap;
  font-family:inherit;
  font-size:12px;
  font-weight:600;
  line-height:1.3;
}
.sentinel-quicklinks .ql-menu-panel a:hover,
.sentinel-quicklinks .ql-menu-panel a.active { background:#104a50; color:white; }
.sentinel-quicklinks .ql-voice-switch {
  margin-left:auto;
  padding:10px 24px;
  min-height:52px;
  border:2px solid #45dfc5;
  background:#0b4b45;
  color:#f4fffd;
  font-size:15px;
  font-weight:900;
  letter-spacing:.05em;
}
.sentinel-quicklinks .ql-voice-switch[aria-checked="false"] { border-color:#a5b6bc; background:#263641; }
.sentinel-quicklinks .ql-voice-switch:disabled { cursor:not-allowed; opacity:.7; }
.sentinel-quicklinks :focus-visible { outline:3px solid #7cf3dc; outline-offset:2px; }
@media(max-width:720px) {
  .sentinel-quicklinks { gap:7px; margin:4px 0 10px; }
  .sentinel-quicklinks .ql-menu { position:static; }
  .sentinel-quicklinks .ql-menu-panel {
    top:100%; left:5px!important; right:5px!important; max-height:60vh;
    min-width:0;
  }
  .sentinel-quicklinks .ql-voice-switch { margin-left:0; flex:1 1 100%; justify-content:center; }
}
