body {
    margin: 0;
    background-color: #DCDCDC;
}

#footer {
    text-align: center;
    padding: 1rem;
    color: #666;
}

/** BANNER */
.banner-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem;
    background: #09c;
    max-width: 100%;
    overflow: hidden;
    gap: 1rem;
}
.banner-bottom {
    background: #046f92;
    color: white;
    padding: 1.5rem;
    text-align: center;
}
.banner-title {
    margin: 0;
    font-weight: bold;
}

/** NAVAR */
.navbar {
    margin-bottom: 0;
    min-height: 35px;
    background-color: #edb600;
    border: none;
    border-radius: 0;
}

@media (min-width: 768px) {
    .navbar-nav > li > a {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

.navbar-default .navbar-nav > li > a {
    color: white;
    /*font-weight: bold;*/
    font-size: 14px;
    font-family: sans-serif !important;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: white;
    background-color: #cf9f00;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: black;
    background-color: whitesmoke;
}

.content {
    padding: 2rem;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}

.content > h1:first-child {
    margin-top: 0;
}

.full {
    background-color: #DCDCDC;
}

td {
    font-size: 12px;
}

a {
    color: #4682B4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

