/* Custom CSS for ExtremeXP Documentation */

/* Light mode customizations */
[data-md-color-scheme="default"] {
  --md-primary-fg-color: #1976d2;
  --md-accent-fg-color: #ff9800;
  --md-code-bg-color: #f5f5f5;
}

/* Dark mode customizations */
[data-md-color-scheme="slate"] {
  --md-primary-fg-color: #5c6bc0;
  --md-accent-fg-color: #ffb74d;
}

/* Custom styling for code blocks */
.highlight pre {
  border-radius: 8px;
  border: 1px solid var(--md-default-fg-color--lightest);
}

/* Darker code block background for light mode */
[data-md-color-scheme="default"] .highlight pre,
[data-md-color-scheme="default"] .md-typeset pre > code {
  background-color: #e8e8e8 !important;
}

/* Custom styling for admonitions */
.md-typeset .admonition {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Custom navigation styling */
.md-nav__title {
  font-weight: 600;
}

/* Custom footer styling */
.md-footer {
  background-color: var(--md-primary-fg-color);
}

/* Add some custom spacing */
.md-content__inner {
  padding: 1.5rem;
}
