/* styles.css - Dark theme, ultra simple */

body {
    font-family: monospace;
    background: #000;
    color: #ccc;
    margin: 20px;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    color: #0af;
    border-bottom: 2px solid #0af;
    padding-bottom: 10px;
}

h2 {
    color: #0af;
    margin-top: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

h3 {
    color: #8af;
    margin-top: 20px;
}

ul {
    margin-left: 20px;
}

pre {
    background: #111;
    padding: 15px;
    border-left: 3px solid #0af;
    border-radius: 0 5px 5px 0;
    overflow-x: auto;
    margin: 15px 0;
}

code {
    color: #0f0;
    font-size: 0.95em;
}

a {
    color: #0af;
    text-decoration: none;
}

a:hover {
    color: #0ff;
    text-decoration: underline;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #111;
    border: 1px solid #333;
}

table th {
    background: #0a2;
    color: #000;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border-right: 1px solid #333;
}

table th:last-child {
    border-right: none;
}

table td {
    padding: 10px 15px;
    border: 1px solid #333;
    border-top: none;
    border-left: none;
}

table tr:nth-child(even) {
    background: #0a0a0a;
}

table tr:hover {
    background: #1a2a1a;
}

table td:last-child {
    border-right: none;
}

/* Section styling */
section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #333;
}

section:last-of-type {
    border-bottom: none;
}

/* Footer */
footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9em;
    text-align: center;
}

footer p {
    margin: 5px 0;
}

/* Back link */
header p {
    margin-bottom: 30px;
}

header a {
    display: inline-block;
    padding: 5px 10px;
    background: #0a2;
    color: #000;
    border-radius: 3px;
    font-weight: bold;
}

header a:hover {
    background: #0c4;
    color: #000;
    text-decoration: none;
}