html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/*DataTable*/
/*dom styles*/
.dom-wrapper {
    /*width: 100%;*/
    margin: 0 auto;
    background-color: lightgrey;
}

.dom-inner1 {
    margin: 0 20px;
    display: inline-block;
    vertical-align: middle;
}

.dom-inner2 {
    margin: 10px 20px 0 20px;
    display: block;
    float: right;
    vertical-align: middle;
}

.dom-inner3 {
    margin: 3px 20px 0 20px;
    display: block;
    float: right;
    vertical-align: middle;
}

/*search results link*/
.case-number {
    font-size: 16px;
    color: dodgerblue;
}

/*DataTable*/


/*eCertify This is for hidden fields needed on client side*/
.hidefields {
    display: none;
}

/*Spinner*/

.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spinner-active {
    cursor: wait !important;
}

/*Download*/
#downloadModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#downloadModalContent {
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

    #downloadModalContent button {
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
    }

/*Toast*/
#simpleToast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 0.95em;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: none;
}

.dt-nowrap-left {
    white-space: nowrap;
    text-align: left;
}
