:root {
    --bg-dark: #111;
    --bg-panel: #1a1a1a;
    --text: #e6e6e6;
    --text-muted: #aaa;
    --accent: #14f195;
    --link: #7f5af0;
    --border: #333;
}


h2 {
    background-color: var(--section-grey);
    padding: 0.75rem 1rem;
    border-left: 4px solid var(--border-cyan);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}


.endpoint {
    background-color: var(--mid-grey);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.label {
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 1rem;
}

.url {
    color: var(--third-color);
    font-weight: 600;
}

pre {
    background-color: var(--section-grey);
    color: #c0c0c0;
    border: 1px solid #2b2b2b;
    border-radius: 5px;
    padding: 1rem;
    font-size: 0.9rem;
    overflow-x: auto;
    font-family: monospace;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.5;
}



a {
    color: var(--third-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}