
/* CSS Variables for easy customization */
:root {
  --callout-border-opacity: 0.5;
}

/* Round corners on images */
.rounded-corners {
  border-radius: 9px;
  max-width: 100%;
  height: auto;
}


/* Callout styles for documentation */
.note {
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid rgba(9, 105, 218, var(--callout-border-opacity));
  border-left: 4px solid rgba(9, 105, 218, var(--callout-border-opacity));
  border-radius: 6px;
}

.note::before {
  content: "NOTE";
  font-weight: bold;
  font-size: 0.85em;
  color: #0969da;
  display: block;
  margin-bottom: 0.5rem;
}

.important {
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid rgba(191, 135, 0, var(--callout-border-opacity));
  border-left: 4px solid rgba(191, 135, 0, var(--callout-border-opacity));
  border-radius: 6px;
}

.important::before {
  content: "IMPORTANT";
  font-weight: bold;
  font-size: 0.85em;
  color: #bf8700;
  display: block;
  margin-bottom: 0.5rem;
}

.attention {
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: transparent;
  border: 1px solid rgba(209, 36, 47, var(--callout-border-opacity));
  border-left: 4px solid rgba(209, 36, 47, var(--callout-border-opacity));
  border-radius: 6px;
}

.attention::before {
  content: "ATTENTION";
  font-weight: bold;
  font-size: 0.85em;
  color: #d1242f;
  display: block;
  margin-bottom: 0.5rem;
}
