/* Custom styles for Pentesting Notes */

:root {
  --md-primary-fg-color: #607d8b;
  --md-accent-fg-color: #ff5722;
}

/* Bold text emphasis */
strong {
  color: var(--md-accent-fg-color);
  font-weight: 600;
}

/* Code block enhancements */
.highlight pre {
  border-radius: 4px;
}

/* Improved table styling */
table {
  width: 100%;
  margin-bottom: 1.5em;
}

table th {
  background-color: var(--md-primary-fg-color);
  color: white;
  font-weight: 600;
}

/* Warning boxes */
.admonition.warning {
  border-left: 4px solid #ff5722;
}

/* Ensure code is readable */
code {
  padding: 0.1em 0.3em;
  border-radius: 3px;
}
