/* Custom CSS for Quarto project */

/* Header styling */
.navbar-brand {
  font-weight: bold;
}

/* Content styling */
.content {
  max-width: 900px;
}

/* Code block styling */
pre {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.375rem;
  padding: 1rem;
}

/* Custom colors */
:root {
  --primary-color: #2780e3;
  --secondary-color: #6c757d;
}

/* Link styling */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Table styling */
table {
  margin: 1rem 0;
}

th {
  background-color: #f8f9fa;
  font-weight: 600;
}