/* autoindex.css */

body {
    background-color: #fff; /* dark grey/near black background */
    font-family: Arial, sans-serif;
    color: #181818;               /* light grey text */
    margin: 20px;
}

a {
    color: #3b3b3b;            /* light blue links for contrast */
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
    color: #3388cc;
}

ul {
    list-style-type: none;
    padding-left: 0;
    max-width: 700px;
    margin: 0 auto;
}

li {
    margin: 8px 0;
    font-size: 1.2em;
}

/* Styling for the injected logo container */
#injected-logo {
    text-align: center;
    margin: 30px 0 20px 0;
}

#injected-logo img {
    max-width: 200px;
    height: auto;
    display: inline-block;
}
