:root {
    --blue: #005C8F;
}


body {
    font-family: Source Sans Pro, sans-serif;
}


/* OVERRIDE BOOTSTRAP NAVBAR */

.navbar {
    background-color: var(--blue);
}

.navbar img {
    height: 50px;
}

a.nav-link {
    color: white;
}


/* MAIN */

h1 {
    color: #555;
    font-size: 40px;
    font-weight: 300;
}

.occhiello {
    color: var(--blue);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.files-listing {
    list-style-type: none;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 5px;
    border: #ccc 1px solid;
    margin: 30px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.files-listing a:not(.btn) {
    color: var(--blue);
}

.files-listing li {
    border-bottom: 1px solid #DDD;
    padding: 5px 0;
}

.files-listing .commands {
    opacity: 0;
    transition: opacity 0.6s;
}

.files-listing li:hover > .commands, .files-listing li:hover > div > .commands {
    opacity: 1;
}

.files-listing li.folder {
    font-weight: 600;
}

.files-listing li.file {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.files-listing ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.files-listing li.file a {
    text-decoration: none;
}

.files-listing li.file a:hover {
    text-decoration: underline;
}

.committee-select {
    margin-bottom: 30px;
}

.committee-select p.active {
    color: var(--blue);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    border: #ccc 1px solid;
    margin-bottom: 0;
}

.committee-select p.active a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.committee-select ul {
    list-style-type: none;
    padding: 0;
    border-radius: 0 0 5px 5px;
    background-color: #f8f8f8;
    border: #ccc 1px solid;
    border-top: none;
}

.committee-select ul li {
    border-bottom: #ccc 1px solid;
}

.committee-select ul li a {
    padding: 5px 5px 5px 35px;
    text-decoration: none;
    color: var(--blue);
    display: block;
}

.committee-select ul li a:hover {
    background-color: #f0f0f0;
}