﻿body {
    padding-top: 100px;
    padding-bottom: 20px;
    font-family: Calibri,"Helvetica Neue", Helvetica, Arial, sans-serif;
    background-image: url('../images/bg_NBM.jpg');
    background-size: 100%;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

.select-year {
    width: 200px;
}

#tableContainer {
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
}

.total {
    background-color: darkgray !important;
}

.select-filter {
    min-width: 150px;
}

/* 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;
}

.field-validation-error {
    color: red;
}

.login-panel {
    margin-top: 80px;
}

.panel-success > .card-header {
    background-color: #4e9d2d;
    color: white;
}

.btn-success {
    background-color: #4e9d2d;
    color: white;
}

.navbar-default {
    background-color: #ffffff;
}

.input-validation-error {
    border-color: red;
}

.version-info {
    position: absolute;
    top: 40px;
    right: 0px;
    padding-right: 15px;
    text-align: right;
    font-size: 8pt;
    color: silver;
}

.validation-summary-errors ul li {
    color: red !important;
}

.insurer-details > .mb-3 {
    margin-bottom: 0;
}

.error-template {
    padding: 80px 25px;
    text-align: center;
}

.error-actions {
    margin-top: 35px;
    margin-bottom: 15px;
}

.error-actions .btn {
    margin-right: 10px;
}


.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
    color: #333;
    background-color: #ebebeb;
    border-color: #adadad
}

.btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
    background-image: none
}

.btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #ccc
}

.card {
    margin-bottom: 20px;
}
label {
    font-weight: bold;
}
.mb-3 label {
    margin-bottom: unset;
}
.radio-inline, .checkbox-inline {
    display: inline-block;
    font-weight: normal !important;
    vertical-align: middle;
    cursor: pointer;
}
.radio label, .checkbox label {
    display: inline;
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}
.navbar {
    border-color: #e7e7e7;
    border-style: solid;
    position: fixed;
    right: 0;
    left: 0;
    border-width: 0 0 1px;
    top: 0;
    z-index: 1030;
    display: block;
    min-height: 50px;
    margin-bottom: 20px;
}
h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.1;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
h1 small {
    color: #999999;

}
.card-header h3 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 16px;
}
.card-header {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}
.nav li a {
    padding: 10px 15px;
    color: #777777;
}

/* fix for default underline as of bootstrap 5 */
a:not([class]) {
    text-decoration: none;
}

a:not([class]):hover {
    text-decoration: underline;
}

/* Styles for the loading spinner */
#containerLoading {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}