body {
    background-color: #0a0a0a;
    margin: 0px;
    font-family: 'Courier New', Courier, monospace;
    color: #e0e0e0;
}
#navbar {
    background-color: #1a1a1a;
    padding: 20px 40px;
    color: white;
    border-bottom: 1px solid #2a2a2a;
    font-size: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
}
li {
    display: inline;
}
a#home {
    font-size: 18px;
    font-weight: 600;
}
a {
    text-decoration: none;
    color: #e0e0e0;
    transition: color 0.2s ease;
}
a:hover {
    color: #ffffff;
}
li.page {
    margin-left: 40px;
}
div#bodyContainer {
    background-color: transparent;
    max-width: 1200px;
    margin: 80px auto;
    color: #e0e0e0;
    font-size: 16px;
    padding: 40px;
    line-height: 1.6;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
th, td{
    border: 1px solid #2a2a2a;
    padding: 16px;
    text-align: left;
    color: #e0e0e0;
}
th {
    background-color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}
td {
    font-size: 15px;
}
tr:hover {
    background-color: #1a1a1a;
}
#githubLink {
    color: #4a9eff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
#githubLink:hover {
    border-bottom-color: #4a9eff;
}
.ai-credit {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 60px;
    padding: 20px;
    border-top: 1px solid #2a2a2a;
}