/* Clean terminal block with no borders or white boxes */
.terminal-block {
    background-color: #111;
    color: #ccc;
    font-family: 'Fira Code', 'Courier New', monospace;
    padding: 1rem;
    margin: 2rem 0;
    border: none;
    border-radius: 0;
    overflow-x: auto;
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-wrap;
    box-shadow: none;
}

/* Eliminate default <pre> and <code> styling */
.terminal-block pre,
.terminal-block code {
    all: unset;
    display: block;
    white-space: pre;
}

/* Prompt color */
.terminal-block .prompt {
    color: #00ff99;
    font-weight: bold;
}

/* Blinking cursor */
.blinking-cursor::after {
    content: "_";
    animation: blink 1s steps(1, start) infinite;
    color: #33ff88;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

.prompt-user {
    color: #ff5555; /* red-ish for root */
    font-weight: bold;
}

.prompt-host {
    color: #33ccff; /* cyan for NullOrigin */
    font-weight: bold;
}

body {
    background: linear-gradient(120deg, #0d0d0d, #1a1a1a);
    background-attachment: fixed;
    color: #ccc;
}

/* Top-left logo (very faint background texture) */
body::before {
    content: "";
    position: fixed;
    top: -1rem;
    left: 2rem;
    width: 100px;
    height: 100px;
    background: url('/NullOrigin.png') no-repeat center center;
    background-size: contain;
    opacity: 0.20;
    z-index: -1;
    pointer-events: none;
}

/* Style for top-right navigation links */
.trigger .page-link {
  color: #ccc !important; /* Light gray for visibility */
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
}

.trigger .page-link:hover {
  color: #00ff99; /* Bright green on hover */
  text-decoration: underline;
}

/* Positioning the navigation container */
.trigger {
  position: absolute;
  top: 1rem;
  right: 2rem;
  z-index: 1000; /* Ensure it's above other elements */
}

<style>
/* Style the Copy button */
.copy-btn {
    background-color: #4CAF50; /* Green background */
    color: #ff33ff; /* Text color */
    border: none; /* No border */
    outline: none; /* Remove outline */
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    position: absolute; /* Positioning the button */
    right: 10px;  /* Place it on the top-right */
    top: 10px;    /* Adjust the position to the top-right */
    padding: 5px 10px;
    font-weight: bold;
}

/* Hover state */
.copy-btn:hover {
    background-color: #45a049;
}

/* Active state */
.copy-btn:active {
    background-color: #3e8e41;
}


/* Add some space around the button */
.copy-btn-container {
    position: relative;
    display: inline-block; /* Ensures the container doesn't take up the full width */
}

.copy-btn-container pre {
    position: relative;
}
<style/>

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #007BFF;
}

a:hover {
    color: #0056b3;
}

header h1 {
    margin: 0;
}

/* Main Content */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Titles */
h1, h2, h3, h4, h5, h6 {
    color: #333;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Lists */
ul {
    list-style: none;
}

ul li {
    margin-bottom: 10px;
}

ol li {
    margin-bottom: 10px;
}

ul, ol {
    padding-left: 20px;
}

/* Code Blocks */
code {
    background-color: #f5f5f5;
    padding: 2px 4px;
    font-size: 0.9rem;
    border-radius: 4px;
}

/* Adjust pre and code elements */
pre, code {
    margin: 0; /* Remove any default margins */
    padding: 0; /* Remove default padding */
    border: none; /* Remove borders */
    background: none; /* Ensure no background is applied */
}

/* Buttons */
button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

.terminal {
    background-color: #1d1f21;
    color: #c5c8c6;
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    width: 875px;
    margin: 20px auto;
    border: 1px solid #4b4b4b;
}

.output {
    margin-bottom: 10px;
    overflow: hidden;
}

.input-line {
    display: flex;
    align-items: left;
}

.prompt {
    white-space: nowrap;
}

.cursor {
    animation: blink 0.7s steps(1) infinite;
    color: #00FF00;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

#typed-input {
    display: inline-block;
    white-space: nowrap; /* Keep text from wrapping */
    margin: 0; /* Remove any default margin/padding */
    padding: 0; /* Ensure there's no padding inside the typed input */
}


#terminal-output p {
    margin: 0; /* Prevent extra spacing between lines */
    display: align; /* Use flex for aligning elements */
    padding: 0; /* Ensure there's no padding inside the typed input */
}

.brackets {
    color: #cdcd23; /* Same color for brackets as terminal text */
}

.user {
    color: #974242; /* Pink for 'amiscreant' */
}

.at {
    color: #76a3a8; /* Cyan for the '@' */
}

.host {
    color: #68a572; /* Green for 'blackbox' */
}

/* Custom Scrollbar */
.highlight pre::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}
