/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 01 2025 | 14:16:46 */
#toc.toc-card{
  max-width: 360px;
  border-radius: 18px;
  /*padding: 28px 26px 32px 46px;*/
  padding:28px 20px 0px 24px;
  background: linear-gradient(180deg,#0f4e84 0%, #063a63 100%);
  color:#fff;
  box-shadow: 0 10px 30px rgba(3,18,40,0.35);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  margin-bottom: 28px;
  position: relative;
  overflow:auto;
  line-height:1.2;
}

/* Title pill */
#toc .toc-title{
  position:relative;
  left:0px;
  top:0px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  color:#0b3357;
  padding:8px 14px;
  border-radius:999px;
  font-weight:600;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
  font-size:14px;
  margin-bottom:8px;
}

/* root list reset */
#toc ol{ margin:0; padding-left:0; list-style:none; }

/* each item is a row: number + link */
#toc li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin:12px 0;
}

/* inline numbering */
#toc .toc-num {
  width:48px;
  flex:0 0 48px;
  text-align:right;
  margin-right:8px;
  color:rgba(255,255,255,0.95);
  font-weight:800;
  font-size:14px;
  line-height:1.05;
}

/* top-level links (visual) */
#toc a.toc-l1 { color:#fff; font-weight:600; font-size:14px; text-decoration:none; display:inline-block; max-width:220px; }

/* second-level: smaller */
#toc a.toc-l2 { color:rgba(255,255,255,0.94); font-weight:500; font-size:13px; text-decoration:none; display:inline-block; max-width:200px; }

/* deeper levels */
#toc a.toc-deep { color:rgba(255,255,255,0.90); font-weight:400; font-size:13px; text-decoration:none; display:inline-block; max-width:180px; }

/* nested ols keep semantic structure (visual indentation is handled by flex rows) */
#toc ol ol { margin-left:0; padding-left:0; }

/* mobile */
@media (max-width:760px){
  #toc.toc-card{ max-width:100%; padding:20px 16px 22px 36px; border-radius:12px; }
  #toc .toc-num{ width:40px; flex:0 0 40px; font-size:13px; }
  #toc a.toc-l1{ font-size:15px; max-width: calc(100% - 56px);}
  #toc a.toc-l2{ font-size:14px; }
}