
.navbar .nav-link:hover{
    color: rgba(255, 255, 255, .8);
    border-bottom-color: rgba(255, 255, 255, .6);
    transition: ease-in-out color .15s;
    transition: ease-in-out border-bottom-color .15s;
}
.navbar .nav-link.active{
    color: white;
    border-bottom-color: rgba(255, 255, 255, 1);
}

.navbar .nav-link{
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2px;
    margin-left: 15px;
    margin-right: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    background-color: transparent;
    border-bottom: .25rem solid transparent;
    transition: ease-in-out color .15s;
}

.navbar{
    background:rgba(255,255,255,0.6);
}
.footer {
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 40px;
    line-height: 45px;
    background-color: #343a40;
    font-size: 13px;
}

kbd{
    background-color: #009AA8;
}

.nav-pills .nav-link.active{
    color: white;
    background-color: #009AA8;
}
.nav-pills .nav-link{
    color: #40494f;
    background-color: transparent;
}

.btn {
    background-color: DodgerBlue;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 15px;
}

/* Darker background on mouse-over */
.btn:hover {
    background-color: RoyalBlue;
}

.pre-scrollable {
    max-height: 200px;
    overflow-y: scroll;
}