html {
    font-size: 12px;
}

@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;
}

a {
    text-decoration: none;
    background-color: transparent;
}
.dt-button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    margin: 2px 2px 2px 2px;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}
.form-group {
    margin-bottom: 3px;
    font-size: 12px;
}


    .form-group.button-col {
        display: flex;
        align-items: flex-end;
        width: 25%;
    }
.form-group-flex {
    display: flex;
    align-items: center;
}






.form-floating > .form-control, .form-floating > .form-select {
    height: calc(2.75rem + 2px);
}

.form-floating > select.form-control:not(:placeholder-shown) {
    padding-top: 1.025rem;
}

.form-floating-sm > .form-control {
    height: calc(2.5rem + 2px);
}

.form-floating-sm > label {
    padding: .25rem .75rem;
}
select.input-group-sm {
    font-size: inherit;
}
.nowrap {
    white-space: nowrap;
}

/* show red asterisks for required fields */
.required + label::after {
    content: " *";
    color: red;
}

.table-striped-columns th:nth-child(even),
.table-striped-columns td:nth-child(even) {
    background-color: #f2f2f2; /* Light gray color for even columns */
}

.table-striped-columns th:nth-child(odd),
.table-striped-columns td:nth-child(odd) {
    background-color: #ffffff; /* White color for odd columns */
}

.table-auto {
    width: auto
}

td.max-width {
    width: 100%;
}
.center {
    text-align: center;
}

.center input[type="radio"] {
    margin: 0 auto;
    display: block;
}
