container {
            text-align: center;
            background-color: #f0f0f0;
            padding: 20px;
        }


/* Reset some default styles */
body, h1, p, ul, table {
    margin: 0;
    padding: 0;
}

/* Style the body */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 20px;
}

/* Style the header */
header {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
}

header a {
    text-decoration: none;
}

header img {
    max-width: 200px;
}

/* Style the directory listing */
h1 {
    margin-top: 20px;
    text-align: center;
}
tbody {
}
table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

th, td {
background-color: white !important;
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
background-color: white !important;    
color: white;
}

tr:hover {
    background-color: #f5f5f5;
}

/* Style the README section */
h1, p {
    text-align: center;
    margin: 20px 0;
}

a {
    color: #007bff;
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    header img {
        max-width: 150px;
    }
}

