/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=IBM+Plex+Mono:wght@400&display=swap');

/* General body style */
body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #f5f5f5; /* Light paper-like background */
    color: #333;
    line-height: 1.6;
    margin: 20px;
    padding: 20px;
    max-width: 800px;
    margin: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Special Elite', monospace;
    text-align: center;
    color: #222;
    letter-spacing: 0.1em;
}

/* Paragraphs */
p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.1em;
    margin: 1em 0;
}

/* Links */
a {
    color: #555;
    text-decoration: none;
    border-bottom: 1px dashed #555;
}

a:hover {
    color: #222;
    border-bottom: 1px solid #222;
}

/* List styles */
ul, ol {
    margin: 1em 0;
    padding-left: 0.5em;
}

li {
    font-family: 'IBM Plex Mono', monospace;
    margin-bottom: 0.5em;
}

/* Code blocks */
code {
    font-family: 'IBM Plex Mono', monospace;
    background-color: #eee;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.9em;
}

/* Blockquote */
blockquote {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2em;
    color: #666;
    margin: 1.5em 10px;
    padding-left: 1em;
    border-left: 3px solid #ccc;
}

/* Horizontal rule */
hr {
    border: none;
    border-top: 1px dashed #aaa;
    margin: 2em 0;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'IBM Plex Mono', monospace;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px dashed #bbb;
    font-size: 1em;
    color: #333;
}

th {
    background-color: #eee;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #222;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

caption {
    font-family: 'Special Elite', monospace;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
    text-align: center;
}

/* Ensure the first column has enough width for the dates */
table td:first-child {
    min-width: 100px; /* Adjust the value as needed */
    white-space: nowrap;
}

/* Style unordered list with custom bullet points */
ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 1.5em; /* Add some space for the custom bullets */
}

ul {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0em; /* Add some space for the custom bullets */
}

ul li::before {
    content: "*"; /* Use a hyphen as the custom bullet */
    font-family: 'IBM Plex Mono', monospace;
    font-weight: bold;
    margin-right: 0.5em; /* Space between bullet and text */
    color: #555;
}

ul li {
    margin-left: 0.5em; /* Indent the entire list item */
    text-indent: -1.1em; /* Pull the first line back to align with the bullet */
    padding-left: 1em; /* Ensure the text aligns properly after the bullet */
}