/* Custom styles for Datto RMM Documentation */

:root {
  /* Primary brand colors - customize as needed */
  --sl-color-accent-low: #1e3a5f;
  --sl-color-accent: #3b82f6;
  --sl-color-accent-high: #93c5fd;

  /* Typography */
  --sl-font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sl-font-mono: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
}

/* Dark mode accent adjustments */
:root[data-theme='dark'] {
  --sl-color-accent-low: #1e3a5f;
  --sl-color-accent: #60a5fa;
  --sl-color-accent-high: #bfdbfe;
}

/* Code block styling */
.expressive-code {
  margin: 1.5rem 0;
}

/* Callout/aside styling enhancements */
.starlight-aside {
  border-radius: 0.5rem;
}

/* Link styling */
a:hover {
  text-decoration: underline;
}
