/* style.css – without any color or background declarations */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Russo+One&display=swap");

.my-4 {
  margin-top: 0.1rem !important;
  margin-bottom: 0.1rem !important;
}

.procblocks {
  font-family: "Russo One", sans-serif !important;
}

a.procblocks-logo {
  font-family: "Russo One", sans-serif !important;
  font-weight: 700 !important;
  font-size: 35px !important;
  text-decoration: none !important;
  line-height: 1;
  border: 0;
  color: inherit;
  filter: brightness(1);
  transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out,
    filter 0.3s ease-in-out;
}

a.procblocks-logo:hover {
  color: white !important;
  text-shadow: 0 0 6px white;
  filter: brightness(1.3);
  animation: logo-glow 1.5s ease-in-out infinite alternate;
}

@keyframes logo-glow {
  from {
    text-shadow: 0 0 6px white;
    filter: brightness(1);
  }
  to {
    text-shadow: 0 0 12px white;
    filter: brightness(1.3);
  }
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

#content.markdown-body {
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  padding: 0.5rem 1rem;
}

#content {
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 1200px;
  margin: 2rem auto;
  padding-top: 2px;
  margin-top: 0;
  min-height: 400px;
}

.mermaid-bg {
  border-radius: 4px;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  padding: 1rem;
}

pre[class*="language-"] {
  border-radius: 4px;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.markdown-body table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5rem;
}

.markdown-body th,
.markdown-body td {
  padding: 0.5rem;
}

footer {
  padding: 1rem 0;
  text-align: center;
}

.compact-search .form-control {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.compact-search .btn {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

/* style.css: Base Markdown styles */
.markdown-body {
  font-family: system-ui, sans-serif;
  line-height: 1.7;
  font-size: 1em;
  padding: 1.5em 1em;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  overflow-x: auto;
}

.markdown-body h1, .markdown-body h2, .markdown-body h3,
.markdown-body h4, .markdown-body h5, .markdown-body h6 {
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.25;
}

.markdown-body p {
  margin: 1em 0;
}

.markdown-body ul, .markdown-body ol {
  margin: 1em 0 1em 2em;
}

.markdown-body blockquote {
  margin: 1em 0;
  padding: 0.5em 1em;
}

.markdown-body pre, .markdown-body code {
  font-family: 'Fira Mono', 'Consolas', 'Monaco', monospace;
  font-size: 0.98em;
}

.markdown-body pre {
  padding: 1em;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1em 0;
}

.markdown-body code {
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

.markdown-body a {
  text-decoration: underline;
}

.markdown-body table {
  border-collapse: collapse;
  margin: 1em 0;
  width: 100%;
}

.markdown-body th, .markdown-body td {
  padding: 0.5em 1em;
}

.markdown-body th {
  font-weight: 600;
}

.markdown-body img {
  max-width: 100%;
  border-radius: 4px;
  margin: 0.5em 0;
}
