body {
    background-color: #1e1e1e;
    color: #cccccc;
    font-family: 'Courier New', Courier, monospace;
    /* Removed the space: 1rem is the browser standard (usually 16px) */
    font-size: 1rem;
    margin: 0;
    padding: 0;
    height: 100vh;
}

/* Terminal Top Navigation Bar */
.terminal-nav {
    background-color: #111;
    border-bottom: 2px solid #4e6e35;
    padding: 0.5rem 1rem;
}

.nav-link-custom {
    color: #4e6e35 !important;
    text-decoration: none;
    margin-right: 20px;
    font-weight: bold;
}

.nav-link-custom:hover, .active-link {
    color: #cccccc !important;
}

/* Linux Prompt Style */
/* Linux Prompt Style */
.prompt::before {
    font-size: 1rem;
    /* This now pulls the 'path' AND the 'file' from your HTML */
    content: "visitor@" attr(data-path) ":$" attr(data-file);
    color: #4e6e35;
    font-weight: bold;
}

.cursor {
    display: inline-block;
    width: 10px; /* Slightly thinner for smaller font */
    height: 1.2rem;
    background-color: #4e6e35;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}

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

.post-entry {
    margin: 1rem 0 2rem 1rem;
    padding-left: 1.5rem;
    border-left: 2px solid #4e6e35;
}

.main-content {
    padding: 2rem;
}

/* Base link style */
.terminal-link {
    text-decoration: none;
    display: inline-block;
}

.terminal-link:link,
.terminal-link:visited {
    color: inherit;
    text-decoration: none;
}

/* This targets BOTH the prompt and the filename on hover */
.terminal-link:hover .prompt::before,
.terminal-link:hover .prompt {
    color: #8da101;
    text-decoration: underline;
    cursor: pointer;
}

model-viewer {
    /* Customizing the focus ring and background */
    --poster-color: transparent;
    outline: none;
    border-radius: 4px;
}
