﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Show the dropdown menu on hover */
.navbar .dropdown:hover > .dropdown-menu {
    display: block;
}

/* Ensure the dropdown-menu is positioned properly */
.navbar .dropdown-menu {
    margin-top: 0; /* Adjust as needed for spacing */
}


/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 5px;
    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;
    /*280px;*/
}

.field-validation-error {
    color: #e80c4d;
    font-weight: bold;
}

input.input-validation-error {
    border: 1px solid #e80c4d;
}
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 2.5rem; /* Footer height */
}

/* Custom CSS to support nested dropdowns */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }

