html {
    max-width: 80ch;
    padding: 3em 1em;
    margin: auto;
    line-height: 1.75;
    font-size: 1.4em;
    font-family: monospace;
    background-color: #2d2d2d;
    color: #e5e5e5; /* Less vibrant white */
}

h1,h2,h3,h4,h5,h6 {
    margin: 2em 0 1em;
    color: #f2f2f2;
}

p,ul,ol {
    margin-bottom: 1em;
    color: #e5e5e5;
}

a {
    color: #62a8ea; /* Blue color for unvisited links */
    text-decoration: none;
}

a:visited {
    color: #d4a5f5; /* Purple color for visited links */
}

a:hover {
    color: #84c5f4; /* Lighter blue on hover */
    text-decoration: underline;
}

.post-meta {
    text-align: right;
    color: #b8b8b8;
}

img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
    filter: brightness(0.95);
}

blockquote {
    font-style: italic;
    border: thin solid #555;
    padding: 1rem;
    background-color: #3b3b3b;
    color: #e5e5e5;
}

blockquote p {
    margin: 0;
}

pre {
    overflow-x: auto;
    padding: 1rem;
    background-color: #3b3b3b;
    color: #e5e5e5;
}

pre, code {
    background: #444;
    color: #e5e5e5;
}

table { 
    width: 100%; 
    background-color: #3b3b3b;
    color: #e5e5e5;
}

table, th, td {
    border: thin solid #555;
    border-collapse: collapse;
    padding: 0.4rem;
}

.table-wrapper {
    overflow-x: auto;
}

/* Additional Professional Touches */

hr {
    border: 0;
    height: 1px;
    background: #555;
    margin: 2rem 0;
}

code, pre {
    border-radius: 4px;
}

.button {
    display: inline-block;
    padding: 0.6em 1.2em;
    margin: 0.3em 0;
    border-radius: 4px;
    background-color: #444;
    color: #e5e5e5;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #555;
}
