<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Show it is fixed to the top */
body {
  padding-top: 4.5rem;
}

.text-center {
  text-align: center;
}

.download-link {
  display: inline-block;
  text-decoration: none;
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.download-link:hover {
  background-color: #0056b3;
}

.download-link span {
  margin-right: 10px;
}

.download-link i {
  font-size: 18px;
  vertical-align: middle;
}

.code-container {
    position: relative;
    margin: 1em 0;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.9em;
    cursor: pointer;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 3px;
}

pre {
    background-color: #f4f4f4;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow-x: auto;
    font-family: Consolas, Monaco, monospace;
    white-space: pre-wrap;
}
</pre></body></html>