@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --md-primary-fg-color: #407796;
  --md-primary-fg-color--light: #5a9bc4;
  --md-primary-fg-color--dark: #2d5f7a;
  --md-accent-fg-color: #EED796;
  --md-accent-fg-color--transparent: rgba(238, 215, 150, 0.1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 600;
}

body {
  font-family: 'Inter', sans-serif;
}

/* PDF cover page styling */
.pdf-cover-page {
  text-align: center;
  padding-top: 200px;
}

.pdf-cover-page h1 {
  color: #407796;
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.pdf-cover-page .subtitle {
  color: #666;
  font-size: 1.2em;
}

/* Admonition customization */
.md-typeset .admonition.tip,
.md-typeset details.tip {
  border-color: #407796;
}

.md-typeset .tip > .admonition-title,
.md-typeset .tip > summary {
  background-color: rgba(64, 119, 150, 0.1);
}

/* Tab styling */
.md-typeset .tabbed-labels > label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
}

/* Screenshot images */
.md-typeset img {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Custom footer links */
.polyguard-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  width: 100%;
}

.polyguard-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.polyguard-footer__links a {
  color: var(--md-footer-fg-color--lighter);
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.2s;
}

.polyguard-footer__links a:hover {
  color: var(--md-footer-fg-color);
  text-decoration: underline;
}

.polyguard-footer__copyright {
  color: var(--md-footer-fg-color--lighter);
  font-size: 0.65rem;
}
