
body{
    background-color: rgb(0, 0, 0);
    font-family: 'Courier New', Courier, monospace;
    color: white;
}

table {
    border-collapse: collapse;
}

th, td {
    border: 1px solid black;
    padding: 4px;
}
    
th {
    cursor: pointer;
}
    
th:hover {
    background: rgb(90, 90, 90);
}

tr:hover {
    background: rgb(42, 42, 42);
}

a {
    color: #58a6ff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left; /* Text stays left-aligned for readability */
}

li {
    margin-bottom: 15px; /* Spacing between rules */
    list-style-position: outside; /* Keeps bullets/numbers aligned */
}

ul, ol {
    padding-left: 20px;
    margin: 20px 0;
}