﻿@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

:root {
    --heading-col: #d98020;
}

html, body {
    background-color: white;
    color: black;
    font-family: Lato, 'Open Sans', Arial, sans-serif;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

.navbar {
    color: white;
    background-color: black;
}

    .navbar a {
        color: white;
        text-decoration: none;
        display: inline-block;
        padding: 12px;
    }

.navbar > div {
    max-width: 900px;
    margin: auto;
}

section > div {
    max-width: 900px;
    margin: auto;
}

footer {
    margin-top: 2rem;
    color: white;
    background-color: black;
}
    footer > div {
        max-width: 900px;
        margin: auto;
        margin-top: 2rem;
    }
    footer a {
        text-decoration: none;
        color: white;
    }
.littlehead {
    margin-bottom: 0.5rem;
    color: var(--heading-col);
    font-weight: bold;
}
footer table td {
    padding-right: 1rem;
    padding-bottom: 0.5rem;
}
.libraryfolder {
    margin: 1rem 0;
    border-bottom: solid 1px #CCC;
    font-size: larger;
}
.libraryfile {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 1rem;
    align-items: center;
    background-color: #EEE;
    margin-bottom: 3px;
    padding: 3px;
}
    .libraryfile a {
        text-decoration: none;
    }

.accountstable {
    width: 100%;
}
    .accountstable th {
        background-color: #939393;
        color: white;
        padding: 6px;
    }
    .accountstable td {
        background-color: #EEE;
    }
    .accountstable td > * {
        padding: 6px;
        display: block;
    }
.detailline {
    display: grid;
    grid-template-columns: 12rem 1fr;
    border: solid 1px #DDD;
    background-color: #eee;
    margin-bottom: 3px;
}
    .detailline > div {
        padding: 8px;
    }

    .detailline ul {
        padding-left: 20px;
        margin-top: 0;
        margin-bottom: 1rem;
    }
        .detailline ul li {
            margin-bottom:6px;
        }
