:root {
  --black-text: #333333;
  --blue-text: #0f6db7;
  --para-text: #5c5c5c;
  --help-text: #747474;
}

body {
    font-size: 14px;
}

a {
    color: var(--blue-text);
}

dl {
    margin-bottom: 0;
    color: #5c5c5c;
}

p {
    color: var(--para-text);
    text-align: justify;
}

ul {
    color: #5c5c5c;
}

ol {
    color: var(--para-text);
}

h1 {
    color: var(--black-text);
  //  font-weight: bold;
    font-size: 2rem;
}

h4 {
    color: #555555;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 0.75rem;
}

h5 {
    color: #555555;
    display: inline;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0;
}

td:empty::after{
  content: "\00a0";
}

hr.half-hr {
    width: 80%;
}

.modal.show {
    display: block; padding-right: 17px;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.smaller-txt {
    font-size: 12px;
}

#site-banner {
    background: var(--bblue);
}

#header-title {
    margin: 0;
    color: white;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
}

#tool-summary {
    font-size: 0.8rem;
    line-height: 1.1;
    font-family: 'Lato', sans-serif;
}

.header-external-logo {
    height: 2em;
}

#footer {
    background-color: #D3D3D3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2ex;
    margin: 0;
}

#tool-info {
    background-color: lightgray;
}

.form-box {
    border: 1px solid darkgrey;
    padding: 1rem;
    margin: 0.5rem 0px;
    border-radius: 0.3rem;
}

.form-box-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid lightgray;
}

.form-box-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.muted-text {
    color: #9d9d9d !important;
}

.fragmid-nav-tab {
    display: flex;
    align-items: baseline;
    padding: 0.75rem 1.5rem;
    margin-right: 5px;
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    color: #6c757d;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.fragmid-nav-tab:hover {
    background: #e9ecef;
    color: var(--blue-text);
}

.fragmid-nav-tab.active {
    background: #fff;
    color: var(--blue-text);
    margin-bottom: -2px;
    border-bottom: 2px solid #fff;
    box-shadow: 0 -3px 6px rgba(0,0,0,0.05);
}

.fragmid-nav-label {
    font-weight: 700;
    font-size: 1.4rem;
    margin-right: 8px;
}

.fragmid-nav-tabs {
    display: flex;
    border-bottom: 2px solid #dee2e6;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.fragmid-content-box {
    border: 2px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.tab-content { display: none; }
.tab-content.active { display: block; }
