body {
    background-color: #0e1014;
    color: white;
    font-family: 'JetBrains Mono', monospace;
}

a {
    color: red;
}

#command {
    color: green;
}

h2, h3 {
    color: green;
}
h4 {
    color: yellow;
}
.code-block-container {
        position: relative;
        background-color: #282c34; /* Dark background for code */
        color: #abb2bf; /* Light text color */
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 15px;
}


.code-block-container pre {
        margin: 0;
        overflow-x: auto; /* Allow horizontal scrolling for long lines */
}

.code-block-container code {
        display: block; /* Ensure code takes full width */
        font-family: monospace;
        font-size: 14px;
        line-height: 1.5;
}

.copy-button {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #61afef; /* Blue copy button */
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 3px;
        cursor: pointer;
        font-size: 12px;
}

.copy-button:hover {
        background-color: #52a0dc;
}

/* 2-column layout like Bottle.py */
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* Sidebar styling */
.sidebar {
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding-right: 10px;
  border-right: 1px solid #ddd;
}

.sidebar ul {
  list-style-type: none;
  padding-left: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

.sidebar a {
  text-decoration: none;
  color: grey;
  font-weight: 500;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* Main content */
.content {
  line-height: 1.6;
  font-size: 16px;
  max-width: 850px;
}
