﻿body {
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}


#headNav {
    display: flex;
    width: 100%;
    height: 50px;
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: rgba(77,79,83,1);
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.4);
    color: white;
    padding: 0 5px 0 5px;
}

    #headNav a:hover {
        text-decoration: none;
    }

    #headNav > a {
        color: white;
    }

    #headNav > #headNavButtons {
        flex: 1;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: stretch;
        align-content: center;
        justify-content: center;
        justify-items: center;
        margin: 0 auto 0 auto;
    }

.headNavButton {
    height: 100%;
    flex: 1 1;
    display: flex;
    padding: 4px 10px 4px 10px;
    cursor: pointer;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    justify-items: center;
    color: white;
    max-width: 300px;
    background-color: rgba(77,79,83,1);
    border-bottom: 5px solid rgba(0,0,0,0);
    transition: all ease-in-out 0.3s;
    text-decoration: none;
}

    .headNavButton.btnActive {
        border-bottom: 5px solid rgba(0,0,0,0.8);
        text-decoration: none;
        color: white;
    }

    .headNavButton:hover {
        border-bottom: 5px solid rgba(0,0,0,0.4);
        text-decoration: none;
        color: white;
    }
