/* Custom styles for Material theme */

:root {
  --md-primary-fg-color: #58a6ff;
  --md-accent-fg-color: #7ee787;
}

/* Custom header gradient */
.md-typeset h1:first-child {
  background: linear-gradient(135deg, #58a6ff 0%, #7ee787 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Custom link styling */
.md-typeset a {
  text-decoration: none;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
}

.md-typeset a:hover {
  border-bottom-color: var(--md-primary-fg-color);
}

/* Admonition customization */
.md-typeset .admonition {
  border-radius: 8px;
}

/* Code block styling */
.md-typeset .code-block {
  border-radius: 8px;
}

/* Table styling */
.md-typeset table {
  border-radius: 8px;
  overflow: hidden;
}

/* Footer styling */
.md-footer-copyright {
  border-top: 1px solid var(--md-default-fg-color--lightest);
}
