body {
    background-color: #161b22;  /* Dark background */
    color: white;  /* White text */
    padding: 10px;  /* Padding around body */
    font-family: Arial, sans-serif;
}

a {
    color: #58a6ff;  /* Light blue links */
    text-decoration: none;
}

li {
    padding-bottom: 5px;  /* Light blue links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background: #238636;  /* GitHub-style green */
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* Keep JSON text inside the <pre> block black */
pre {
    color: black !important;  /* Force black text */
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: monospace;
}