/* CroMesh v3.5.2 — landing page and branch/leaf section visual layer */

.cromesh-home {
  position: relative;
  min-height: calc(100vh - 2rem);
  margin: -1rem -0.8rem -2rem;
  padding: 0.5rem 1rem 3rem;
  isolation: isolate;
}

.cromesh-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 7, 10, .93) 0%, rgba(3, 7, 10, .76) 28%, rgba(3, 7, 10, .36) 68%, rgba(3, 7, 10, .62) 100%),
    linear-gradient(180deg, rgba(3, 7, 10, .18) 0%, rgba(3, 7, 10, .38) 100%),
    url("../assets/images/cromesh-hr-mesh-background.webp") center center / cover no-repeat;
  pointer-events: none;
}

.cromesh-home::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 52% 30%, rgba(255, 42, 42, .08), transparent 42%);
  pointer-events: none;
}

.cromesh-hero {
  max-width: 58rem;
  padding: 8vh 1rem 4rem;
}

.cromesh-hero h1 {
  margin: 0 0 1.25rem;
  max-width: 52rem;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-shadow: 0 3px 24px rgba(0,0,0,.55);
}

.cromesh-accent { color: #ff2d2d; }

.cromesh-hero > p {
  max-width: 46rem;
  color: rgba(255,255,255,.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
}

.cromesh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.cromesh-button {
  display: inline-flex !important;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.1rem !important;
  border: 1px solid rgba(255,255,255,.28) !important;
  border-radius: .55rem;
  background: rgba(8,12,16,.62);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
}

.cromesh-button-primary {
  border-color: #ff2d2d !important;
  background: #e32626;
}

.cromesh-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.cromesh-feature-grid,
.cromesh-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 80rem;
}

.cromesh-feature-card,
.cromesh-quick-card {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .8rem;
  background: rgba(7,11,15,.67);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(9px);
}

.cromesh-feature-card {
  min-height: 9.5rem;
  padding: 1.25rem;
  color: rgba(255,255,255,.9);
  font-size: 0.9rem;
}

.cromesh-feature-card h3 {
  color: #fff;
  margin-top: .5rem;
  font-size: 1.1rem;
}

.cromesh-icon { color: #ff2d2d; font-size: 1.55rem; }

.cromesh-home h2 {
  margin-top: 3rem;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

/* Brzi pristup — compact white typography */
.cromesh-quick-card {
  padding: 1.1rem;
  color: rgba(255,255,255,.86);
  font-size: 0.9rem;
  transition: transform .18s ease, border-color .18s ease;
}

.cromesh-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,45,45,.55);
}

.cromesh-quick-card strong {
  display: block;
  margin: .35rem 0;
  color: #fff;
  font-size: 0.95rem;
}

.cromesh-quick-card > :first-child {
  color: #fff;
  font-size: 1rem;
}

/* Brzi pristup — cijela kartica ("kuća") je klikabilna, ne samo zadnji link.
   Standardni "stretched link" pristup: kartica dobiva position:relative, a
   jedinom linku unutra (npr. "Otvori vodič →") dodaje se ::after pseudo-element
   koji se rasteže preko cijele kartice (position:absolute; inset:0), pa klik
   bilo gdje unutar okvira aktivira taj link. Markdown sadržaj kartica ostaje
   nepromijenjen. */
.cromesh-quick-card {
  position: relative;
}

.cromesh-quick-card a {
  color: #fff;
  position: static;
}

.cromesh-quick-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cromesh-quick-card a:hover {
  text-decoration: underline;
}

.cromesh-home-note {
  max-width: 70rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .75rem;
  background: rgba(7,11,15,.58);
  color: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
}

.cromesh-home-note .admonition { background: rgba(20,25,30,.65); }

/* Blue family: explicit blue topics and all leaf/end pages. */
body.cromesh-section-blue { background: #020a12; }

body.cromesh-section-blue::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(2,9,17,.90) 0%, rgba(2,10,19,.66) 38%, rgba(2,12,22,.48) 70%, rgba(2,8,15,.76) 100%),
    url("../assets/images/cromesh-blue-section-background.webp") center center / cover no-repeat;
  pointer-events: none;
}

/* Green family: main topic branches — Uvod, Česta pitanja, Postavke, Odabir uređaja, Hardware, Software, Mreža. */
body.cromesh-section-green { background: #020b06; }

body.cromesh-section-green::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(90deg, rgba(2,10,5,.90) 0%, rgba(2,12,7,.66) 38%, rgba(2,18,10,.46) 70%, rgba(2,9,5,.76) 100%),
    url("../assets/images/cromesh-green-section-background.webp") center center / cover no-repeat;
  pointer-events: none;
}

body.cromesh-section-blue .md-main,
body.cromesh-section-green .md-main { background: transparent; }

body.cromesh-section-blue .md-content__inner,
body.cromesh-section-green .md-content__inner {
  background: rgba(2,8,15,.18);
  border-radius: .65rem;
  padding: 1rem 1.25rem 2rem;
}

@media screen and (max-width: 900px) {
  .cromesh-feature-grid,
  .cromesh-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cromesh-hero { padding-top: 5vh; }
}

@media screen and (max-width: 600px) {
  .cromesh-home { margin-left: -.4rem; margin-right: -.4rem; }
  .cromesh-feature-grid,
  .cromesh-quick-grid { grid-template-columns: 1fr; }
  .cromesh-hero h1 { font-size: 2.7rem; }

  body.cromesh-section-blue::before {
    background:
      linear-gradient(90deg, rgba(2,9,17,.88), rgba(2,10,19,.66)),
      url("../assets/images/cromesh-blue-section-background.webp") 57% center / cover no-repeat;
  }

  body.cromesh-section-green::before {
    background:
      linear-gradient(90deg, rgba(2,10,5,.88), rgba(2,12,7,.66)),
      url("../assets/images/cromesh-green-section-background.webp") 57% center / cover no-repeat;
  }
}

/* v3.6.1 — community photos. Original graphics and aspect ratios are preserved. */
.cromesh-doc-photo {
  width: 100%;
  max-width: 800px;
  margin: 1.75rem auto 2rem;
  text-align: center;
}

.cromesh-doc-photo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: .65rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.cromesh-doc-photo--narrow {
  max-width: 560px;
}

@media screen and (max-width: 600px) {
  .cromesh-doc-photo,
  .cromesh-doc-photo--narrow {
    width: 100%;
    max-width: 100%;
  }
}


/* v3.6.2 — jednostavne stilizirane ikone u glavnoj navigaciji (desktop tabovi) */
/* Ikone iz Material Design Icons seta (Apache-2.0), umetnute kao SVG maske umjesto emoji. */
/* Pozicijski (nth-child) odabir jer MkDocs generira relativne (../) hrefove ovisno o dubini stranice, */
/* pa href-based selektori ne rade pouzdano na svim podstranicama. Redoslijed prati nav: u mkdocs.yml. */
.md-tabs__link {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.md-tabs__list > .md-tabs__item > .md-tabs__link::before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.md-tabs__list > .md-tabs__item:nth-child(1) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M10%2C20V14H14V20H19V12H22L12%2C3L2%2C12H5V20H10Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M10%2C20V14H14V20H19V12H22L12%2C3L2%2C12H5V20H10Z%22/%3E%3C/svg%3E");
}

.md-tabs__list > .md-tabs__item:nth-child(2) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%202L14%206.5V17.5L19%2013V2M6.5%205C4.55%205%202.45%205.4%201%206.5V21.16C1%2021.41%201.25%2021.66%201.5%2021.66C1.6%2021.66%201.65%2021.59%201.75%2021.59C3.1%2020.94%205.05%2020.5%206.5%2020.5C8.45%2020.5%2010.55%2020.9%2012%2022C13.35%2021.15%2015.8%2020.5%2017.5%2020.5C19.15%2020.5%2020.85%2020.81%2022.25%2021.56C22.35%2021.61%2022.4%2021.59%2022.5%2021.59C22.75%2021.59%2023%2021.34%2023%2021.09V6.5C22.4%206.05%2021.75%205.75%2021%205.5V19C19.9%2018.65%2018.7%2018.5%2017.5%2018.5C15.8%2018.5%2013.35%2019.15%2012%2020V6.5C10.55%205.4%208.45%205%206.5%205Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%202L14%206.5V17.5L19%2013V2M6.5%205C4.55%205%202.45%205.4%201%206.5V21.16C1%2021.41%201.25%2021.66%201.5%2021.66C1.6%2021.66%201.65%2021.59%201.75%2021.59C3.1%2020.94%205.05%2020.5%206.5%2020.5C8.45%2020.5%2010.55%2020.9%2012%2022C13.35%2021.15%2015.8%2020.5%2017.5%2020.5C19.15%2020.5%2020.85%2020.81%2022.25%2021.56C22.35%2021.61%2022.4%2021.59%2022.5%2021.59C22.75%2021.59%2023%2021.34%2023%2021.09V6.5C22.4%206.05%2021.75%205.75%2021%205.5V19C19.9%2018.65%2018.7%2018.5%2017.5%2018.5C15.8%2018.5%2013.35%2019.15%2012%2020V6.5C10.55%205.4%208.45%205%206.5%205Z%22/%3E%3C/svg%3E");
}

.md-tabs__list > .md-tabs__item:nth-child(3) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M15.07%2C11.25L14.17%2C12.17C13.45%2C12.89%2013%2C13.5%2013%2C15H11V14.5C11%2C13.39%2011.45%2C12.39%2012.17%2C11.67L13.41%2C10.41C13.78%2C10.05%2014%2C9.55%2014%2C9C14%2C7.89%2013.1%2C7%2012%2C7A2%2C2%200%200%2C0%2010%2C9H8A4%2C4%200%200%2C1%2012%2C5A4%2C4%200%200%2C1%2016%2C9C16%2C9.88%2015.64%2C10.67%2015.07%2C11.25M13%2C19H11V17H13M12%2C2A10%2C10%200%200%2C0%202%2C12A10%2C10%200%200%2C0%2012%2C22A10%2C10%200%200%2C0%2022%2C12C22%2C6.47%2017.5%2C2%2012%2C2Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M15.07%2C11.25L14.17%2C12.17C13.45%2C12.89%2013%2C13.5%2013%2C15H11V14.5C11%2C13.39%2011.45%2C12.39%2012.17%2C11.67L13.41%2C10.41C13.78%2C10.05%2014%2C9.55%2014%2C9C14%2C7.89%2013.1%2C7%2012%2C7A2%2C2%200%200%2C0%2010%2C9H8A4%2C4%200%200%2C1%2012%2C5A4%2C4%200%200%2C1%2016%2C9C16%2C9.88%2015.64%2C10.67%2015.07%2C11.25M13%2C19H11V17H13M12%2C2A10%2C10%200%200%2C0%202%2C12A10%2C10%200%200%2C0%2012%2C22A10%2C10%200%200%2C0%2022%2C12C22%2C6.47%2017.5%2C2%2012%2C2Z%22/%3E%3C/svg%3E");
}

.md-tabs__list > .md-tabs__item:nth-child(4) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M12%2C15.5A3.5%2C3.5%200%200%2C1%208.5%2C12A3.5%2C3.5%200%200%2C1%2012%2C8.5A3.5%2C3.5%200%200%2C1%2015.5%2C12A3.5%2C3.5%200%200%2C1%2012%2C15.5M19.43%2C12.97C19.47%2C12.65%2019.5%2C12.33%2019.5%2C12C19.5%2C11.67%2019.47%2C11.34%2019.43%2C11L21.54%2C9.37C21.73%2C9.22%2021.78%2C8.95%2021.66%2C8.73L19.66%2C5.27C19.54%2C5.05%2019.27%2C4.96%2019.05%2C5.05L16.56%2C6.05C16.04%2C5.66%2015.5%2C5.32%2014.87%2C5.07L14.5%2C2.42C14.46%2C2.18%2014.25%2C2%2014%2C2H10C9.75%2C2%209.54%2C2.18%209.5%2C2.42L9.13%2C5.07C8.5%2C5.32%207.96%2C5.66%207.44%2C6.05L4.95%2C5.05C4.73%2C4.96%204.46%2C5.05%204.34%2C5.27L2.34%2C8.73C2.21%2C8.95%202.27%2C9.22%202.46%2C9.37L4.57%2C11C4.53%2C11.34%204.5%2C11.67%204.5%2C12C4.5%2C12.33%204.53%2C12.65%204.57%2C12.97L2.46%2C14.63C2.27%2C14.78%202.21%2C15.05%202.34%2C15.27L4.34%2C18.73C4.46%2C18.95%204.73%2C19.03%204.95%2C18.95L7.44%2C17.94C7.96%2C18.34%208.5%2C18.68%209.13%2C18.93L9.5%2C21.58C9.54%2C21.82%209.75%2C22%2010%2C22H14C14.25%2C22%2014.46%2C21.82%2014.5%2C21.58L14.87%2C18.93C15.5%2C18.67%2016.04%2C18.34%2016.56%2C17.94L19.05%2C18.95C19.27%2C19.03%2019.54%2C18.95%2019.66%2C18.73L21.66%2C15.27C21.78%2C15.05%2021.73%2C14.78%2021.54%2C14.63L19.43%2C12.97Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M12%2C15.5A3.5%2C3.5%200%200%2C1%208.5%2C12A3.5%2C3.5%200%200%2C1%2012%2C8.5A3.5%2C3.5%200%200%2C1%2015.5%2C12A3.5%2C3.5%200%200%2C1%2012%2C15.5M19.43%2C12.97C19.47%2C12.65%2019.5%2C12.33%2019.5%2C12C19.5%2C11.67%2019.47%2C11.34%2019.43%2C11L21.54%2C9.37C21.73%2C9.22%2021.78%2C8.95%2021.66%2C8.73L19.66%2C5.27C19.54%2C5.05%2019.27%2C4.96%2019.05%2C5.05L16.56%2C6.05C16.04%2C5.66%2015.5%2C5.32%2014.87%2C5.07L14.5%2C2.42C14.46%2C2.18%2014.25%2C2%2014%2C2H10C9.75%2C2%209.54%2C2.18%209.5%2C2.42L9.13%2C5.07C8.5%2C5.32%207.96%2C5.66%207.44%2C6.05L4.95%2C5.05C4.73%2C4.96%204.46%2C5.05%204.34%2C5.27L2.34%2C8.73C2.21%2C8.95%202.27%2C9.22%202.46%2C9.37L4.57%2C11C4.53%2C11.34%204.5%2C11.67%204.5%2C12C4.5%2C12.33%204.53%2C12.65%204.57%2C12.97L2.46%2C14.63C2.27%2C14.78%202.21%2C15.05%202.34%2C15.27L4.34%2C18.73C4.46%2C18.95%204.73%2C19.03%204.95%2C18.95L7.44%2C17.94C7.96%2C18.34%208.5%2C18.68%209.13%2C18.93L9.5%2C21.58C9.54%2C21.82%209.75%2C22%2010%2C22H14C14.25%2C22%2014.46%2C21.82%2014.5%2C21.58L14.87%2C18.93C15.5%2C18.67%2016.04%2C18.34%2016.56%2C17.94L19.05%2C18.95C19.27%2C19.03%2019.54%2C18.95%2019.66%2C18.73L21.66%2C15.27C21.78%2C15.05%2021.73%2C14.78%2021.54%2C14.63L19.43%2C12.97Z%22/%3E%3C/svg%3E");
}

.md-tabs__list > .md-tabs__item:nth-child(5) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M3%206H21V4H3C1.9%204%201%204.9%201%206V18C1%2019.1%201.9%2020%203%2020H7V18H3V6M13%2012H9V13.78C8.39%2014.33%208%2015.11%208%2016C8%2016.89%208.39%2017.67%209%2018.22V20H13V18.22C13.61%2017.67%2014%2016.88%2014%2016S13.61%2014.33%2013%2013.78V12M11%2017.5C10.17%2017.5%209.5%2016.83%209.5%2016S10.17%2014.5%2011%2014.5%2012.5%2015.17%2012.5%2016%2011.83%2017.5%2011%2017.5M22%208H16C15.5%208%2015%208.5%2015%209V19C15%2019.5%2015.5%2020%2016%2020H22C22.5%2020%2023%2019.5%2023%2019V9C23%208.5%2022.5%208%2022%208M21%2018H17V10H21V18Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M3%206H21V4H3C1.9%204%201%204.9%201%206V18C1%2019.1%201.9%2020%203%2020H7V18H3V6M13%2012H9V13.78C8.39%2014.33%208%2015.11%208%2016C8%2016.89%208.39%2017.67%209%2018.22V20H13V18.22C13.61%2017.67%2014%2016.88%2014%2016S13.61%2014.33%2013%2013.78V12M11%2017.5C10.17%2017.5%209.5%2016.83%209.5%2016S10.17%2014.5%2011%2014.5%2012.5%2015.17%2012.5%2016%2011.83%2017.5%2011%2017.5M22%208H16C15.5%208%2015%208.5%2015%209V19C15%2019.5%2015.5%2020%2016%2020H22C22.5%2020%2023%2019.5%2023%2019V9C23%208.5%2022.5%208%2022%208M21%2018H17V10H21V18Z%22/%3E%3C/svg%3E");
}

.md-tabs__list > .md-tabs__item:nth-child(6) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M13.78%2015.3L19.78%2021.3L21.89%2019.14L15.89%2013.14L13.78%2015.3M17.5%2010.1C17.11%2010.1%2016.69%2010.05%2016.36%209.91L4.97%2021.25L2.86%2019.14L10.27%2011.74L8.5%209.96L7.78%2010.66L6.33%209.25V12.11L5.63%2012.81L2.11%209.25L2.81%208.55H5.62L4.22%207.14L7.78%203.58C8.95%202.41%2010.83%202.41%2012%203.58L9.89%205.74L11.3%207.14L10.59%207.85L12.38%209.63L14.2%207.75C14.06%207.42%2014%207%2014%206.63C14%204.66%2015.56%203.11%2017.5%203.11C18.09%203.11%2018.61%203.25%2019.08%203.53L16.41%206.2L17.91%207.7L20.58%205.03C20.86%205.5%2021%206%2021%206.63C21%208.55%2019.45%2010.1%2017.5%2010.1Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M13.78%2015.3L19.78%2021.3L21.89%2019.14L15.89%2013.14L13.78%2015.3M17.5%2010.1C17.11%2010.1%2016.69%2010.05%2016.36%209.91L4.97%2021.25L2.86%2019.14L10.27%2011.74L8.5%209.96L7.78%2010.66L6.33%209.25V12.11L5.63%2012.81L2.11%209.25L2.81%208.55H5.62L4.22%207.14L7.78%203.58C8.95%202.41%2010.83%202.41%2012%203.58L9.89%205.74L11.3%207.14L10.59%207.85L12.38%209.63L14.2%207.75C14.06%207.42%2014%207%2014%206.63C14%204.66%2015.56%203.11%2017.5%203.11C18.09%203.11%2018.61%203.25%2019.08%203.53L16.41%206.2L17.91%207.7L20.58%205.03C20.86%205.5%2021%206%2021%206.63C21%208.55%2019.45%2010.1%2017.5%2010.1Z%22/%3E%3C/svg%3E");
}

.md-tabs__list > .md-tabs__item:nth-child(7) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M21%2C2H3A2%2C2%200%200%2C0%201%2C4V20A2%2C2%200%200%2C0%203%2C22H21A2%2C2%200%200%2C0%2023%2C20V4A2%2C2%200%200%2C0%2021%2C2M11%2C17.5L9.5%2C19L5%2C14.5L9.5%2C10L11%2C11.5L8%2C14.5L11%2C17.5M14.5%2C19L13%2C17.5L16%2C14.5L13%2C11.5L14.5%2C10L19%2C14.5L14.5%2C19M21%2C7H3V4H21V7Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M21%2C2H3A2%2C2%200%200%2C0%201%2C4V20A2%2C2%200%200%2C0%203%2C22H21A2%2C2%200%200%2C0%2023%2C20V4A2%2C2%200%200%2C0%2021%2C2M11%2C17.5L9.5%2C19L5%2C14.5L9.5%2C10L11%2C11.5L8%2C14.5L11%2C17.5M14.5%2C19L13%2C17.5L16%2C14.5L13%2C11.5L14.5%2C10L19%2C14.5L14.5%2C19M21%2C7H3V4H21V7Z%22/%3E%3C/svg%3E");
}

.md-tabs__list > .md-tabs__item:nth-child(8) > .md-tabs__link::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M16.36%2C14C16.44%2C13.34%2016.5%2C12.68%2016.5%2C12C16.5%2C11.32%2016.44%2C10.66%2016.36%2C10H19.74C19.9%2C10.64%2020%2C11.31%2020%2C12C20%2C12.69%2019.9%2C13.36%2019.74%2C14M14.59%2C19.56C15.19%2C18.45%2015.65%2C17.25%2015.97%2C16H18.92C17.96%2C17.65%2016.43%2C18.93%2014.59%2C19.56M14.34%2C14H9.66C9.56%2C13.34%209.5%2C12.68%209.5%2C12C9.5%2C11.32%209.56%2C10.65%209.66%2C10H14.34C14.43%2C10.65%2014.5%2C11.32%2014.5%2C12C14.5%2C12.68%2014.43%2C13.34%2014.34%2C14M12%2C19.96C11.17%2C18.76%2010.5%2C17.43%2010.09%2C16H13.91C13.5%2C17.43%2012.83%2C18.76%2012%2C19.96M8%2C8H5.08C6.03%2C6.34%207.57%2C5.06%209.4%2C4.44C8.8%2C5.55%208.35%2C6.75%208%2C8M5.08%2C16H8C8.35%2C17.25%208.8%2C18.45%209.4%2C19.56C7.57%2C18.93%206.03%2C17.65%205.08%2C16M4.26%2C14C4.1%2C13.36%204%2C12.69%204%2C12C4%2C11.31%204.1%2C10.64%204.26%2C10H7.64C7.56%2C10.66%207.5%2C11.32%207.5%2C12C7.5%2C12.68%207.56%2C13.34%207.64%2C14M12%2C4.03C12.83%2C5.23%2013.5%2C6.57%2013.91%2C8H10.09C10.5%2C6.57%2011.17%2C5.23%2012%2C4.03M18.92%2C8H15.97C15.65%2C6.75%2015.19%2C5.55%2014.59%2C4.44C16.43%2C5.07%2017.96%2C6.34%2018.92%2C8M12%2C2C6.47%2C2%202%2C6.5%202%2C12A10%2C10%200%200%2C0%2012%2C22A10%2C10%200%200%2C0%2022%2C12A10%2C10%200%200%2C0%2012%2C2Z%22/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M16.36%2C14C16.44%2C13.34%2016.5%2C12.68%2016.5%2C12C16.5%2C11.32%2016.44%2C10.66%2016.36%2C10H19.74C19.9%2C10.64%2020%2C11.31%2020%2C12C20%2C12.69%2019.9%2C13.36%2019.74%2C14M14.59%2C19.56C15.19%2C18.45%2015.65%2C17.25%2015.97%2C16H18.92C17.96%2C17.65%2016.43%2C18.93%2014.59%2C19.56M14.34%2C14H9.66C9.56%2C13.34%209.5%2C12.68%209.5%2C12C9.5%2C11.32%209.56%2C10.65%209.66%2C10H14.34C14.43%2C10.65%2014.5%2C11.32%2014.5%2C12C14.5%2C12.68%2014.43%2C13.34%2014.34%2C14M12%2C19.96C11.17%2C18.76%2010.5%2C17.43%2010.09%2C16H13.91C13.5%2C17.43%2012.83%2C18.76%2012%2C19.96M8%2C8H5.08C6.03%2C6.34%207.57%2C5.06%209.4%2C4.44C8.8%2C5.55%208.35%2C6.75%208%2C8M5.08%2C16H8C8.35%2C17.25%208.8%2C18.45%209.4%2C19.56C7.57%2C18.93%206.03%2C17.65%205.08%2C16M4.26%2C14C4.1%2C13.36%204%2C12.69%204%2C12C4%2C11.31%204.1%2C10.64%204.26%2C10H7.64C7.56%2C10.66%207.5%2C11.32%207.5%2C12C7.5%2C12.68%207.56%2C13.34%207.64%2C14M12%2C4.03C12.83%2C5.23%2013.5%2C6.57%2013.91%2C8H10.09C10.5%2C6.57%2011.17%2C5.23%2012%2C4.03M18.92%2C8H15.97C15.65%2C6.75%2015.19%2C5.55%2014.59%2C4.44C16.43%2C5.07%2017.96%2C6.34%2018.92%2C8M12%2C2C6.47%2C2%202%2C6.5%202%2C12A10%2C10%200%200%2C0%2012%2C22A10%2C10%200%200%2C0%2022%2C12A10%2C10%200%200%2C0%2012%2C2Z%22/%3E%3C/svg%3E");
}

/* v3.6.3 — Naše poveznice: centered and transparent table */
.cromesh-home-links {
  background: transparent !important;
  text-align: center;
}

.cromesh-home-links table {
  margin-left: auto;
  margin-right: auto;
  background: transparent !important;
  /* v3.7.0 — tablica 50% veća: font-size raste s 0.64rem (MkDocs Material default)
     na 0.96rem. Padding u th/td je definiran u em jedinicama u temi, pa prati
     font-size i tablica prirodno naraste u cjelini (tekst + razmak), ne samo tekst. */
  font-size: 0.96rem !important;
}

.cromesh-home-links table thead,
.cromesh-home-links table tbody,
.cromesh-home-links table tr,
.cromesh-home-links table th,
.cromesh-home-links table td {
  background: transparent !important;
}

