.container {
    max-width: 1100px;
    margin: 0 auto;
}

body {
    background-color: black;
    color: white;
    font-size: 20px;
    font-family: monospace, sans-serif;
    padding: 20px;
}

a {
    text-decoration: none;
    color: #7272ff;
}

h1 {
    margin-bottom: 0;
}

h4 {
    margin-top: 7px;
}

.file-item {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
    width: 300px;
}

.file-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.file-table th, .file-table td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.file-table th {
    background-color: #000000;
}

.file-table tr:hover {
    background-color: #111111;
}