/* Minimal styling */

:root {
  --md-primary-fg-color: #3f51b5;
  --md-accent-fg-color: #2196f3;
}

/* Smooth scrolling */
* {
  scroll-behavior: smooth;
}

/* Better admonitions */
.md-typeset .admonition {
  border-radius: 0.4rem;
  box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.05);
}

/* Better code blocks */
.md-typeset pre > code {
  border-radius: 0.4rem;
}

/* Better tables */
.md-typeset table:not([class]) {
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 0.2rem 0.5rem rgba(0,0,0,0.05);
}

.md-typeset table:not([class]) th {
  background: var(--md-primary-fg-color);
  color: white;
  font-weight: 500;
}

/* Subtle link effect */
.md-typeset a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
}

.md-typeset a:hover {
  border-bottom-color: currentColor;
}
