* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: rgb(142, 142, 214);
}
a:hover,
a:focus {
    text-decoration: underline;
}

.filters h3 {
    margin-bottom: 0.3em;
}
/* LAYOUT CSS */
#layout {
    padding-left: 25%; /* "left col (nav + list)" width */
    position: relative;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 25%;
    margin-left: -25%;
    background: #c0392b;
    color: #fff;
}

.header {
    margin: 50% 2em 0;
    text-align: right;
}

.brand-title,
.brand-tagline {
    margin: 0;
}
.brand-title {
    text-transform: uppercase;
}
.brand-tagline {
    font-weight: 300;
    color: #fdaf9f;
}

.nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-item {
    display: inline-block;
    *display: inline;
    zoom: 1;
}
.nav-item a {
    background: transparent;
    border: 3px solid  #fdaf9f;
    color: #fff;
    margin-top: 1em;
}
.nav-item-small .pure-button {
    font-size: 12px;
    border-color: transparent;
    padding: 0.2em 0.4em;
    border-radius: 5px;
    width: 40px;
}
.filters .pure-button {
    margin-top: 0.2em;
    margin-right: 0.2em;
    padding: 0.2em 0.3em;
}

.nav-item a:hover,
.nav-item a:focus {
    border: 3px solid  #fdaf9f;
    color:   #fdaf9f;
    text-decoration: none;
}

.content-subhead {
    text-transform: uppercase;
    color: #aaa;
    border-bottom: 1px solid #eee;
    padding: 0.4em 0;
    font-size: 80%;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.content {
    padding: 2em 3em 0;
}
.hidden {
    display: none;
}

    .pure-button-success {
        background: #E74C3C;
        color: #fff;
    }

tbody tr:last-child {
    background-color:#E74C3C; 
    color: #fff;
    font-weight: bold;
}

.footer {
    text-align: center;
    padding: 1em 0;
    color: #ccc;
    font-size: 14px;
}
.footer a {
    color: #ccc;
    font-size: 14px;
}
.footer .pure-menu a:hover,
.footer .pure-menu a:focus {
    background: none;
}

@media (min-width: 768px) {
.header {
    margin: 10% 2em 0;
}
}

@media (max-width: 767px) {
    .sidebar {
        width: 100%;
        position: relative;
        margin: 0;
    }

    .header {
        text-align: center;
        top: auto;
        margin: 3em auto;
        position: static;
    }

    #layout {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2em 1em 0;
    }
}

