html {
    font-size: 11px;
    position: relative;
    min-height: 90%;
}

@media (min-width: 768px) {
    html {
        font-size: 13px;
    }
}

.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;
}

*,
:before,
:after {
    box-sizing: border-box;
}

body {
    margin-bottom: 5px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

body {
    
    margin: 0px 15px 0px 15px;
    padding: 0px 0px 0px 0px;
}

.body-content {
    padding: 0px 15px 0px 15px;
}

.dl-horizontal dt {
    white-space: normal;
}

.legend {
    display: block;
    width: 100%;
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
    font-size: 21px;
    line-height: inherit;
    color: #666666;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

.table-hover-pointer > tbody > tr:hover > td,
.table-hover-pointer > tbody > tr:hover > th {
    cursor: pointer;
}

.hide-title-bar .ui-dialog-titlebar {
    /* Do not display the title bar in a jqueryui dialog. */
    display: none;
}

/*custom*/
.table-fit {
    width: 1px;
}

.table td.fit,
.table th.fit {
    white-space: nowrap;
    width: 1%;
}

a,
a label {
    cursor: pointer;
}
.redTxt {
    color: red;
}
.greenTxt {
    color: green;
    font-weight: bold;
}



.signature-component {
    text-align: left;
    display: inline-block;
    max-width: 100%;
}

    .signature-component h1 {
        margin-bottom: 0;
    }

    .signature-component h2 {
        margin: 0;
        font-size: 100%;
    }

    .signature-component button {
        padding: 1em;
        background: transparent;
        box-shadow: 2px 2px 4px #777;
        margin-top: 0.5em;
        border: 1px solid #777;
        font-size: 1rem;
    }

        .signature-component button.toggle {
            background: rgba(255, 0, 0, 0.2);
        }

    .signature-component canvas {
        display: block;
        position: relative;
        border: 1px solid;
    }

    .signature-component img {
        position: absolute;
        left: 0;
        top: 0;
    }

.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    //transform: translate(-50%, -50%);
}

.required .form-label::after {
    content: " *"; /* Adds the asterisk */
    color: red; /* Sets the color to red */
}

/* Custom styles for the checkbox border color when checked */
.custom-checkbox .form-check-input:checked {
    border-color: blue; /* Change to your desired color */
}

.indent-first-line {
    text-indent: 20px; /* Adjust the value as needed */
}

/* Custom CSS for checkbox border color */
.custom-checkbox .form-check-input {
    border-color: black; /* Set default border color */
}

    .custom-checkbox .form-check-input:checked {
        border-color: black; /* Set border color when checked */
    }

/*.custom-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(your-focus-color-rgb, .25);*/ /* Customize focus outline */
/*}*/

canvas {
    border: 2px solid grey; /* Adds a solid black border */
    border-radius: 3px; /* Optional: Rounds the corners */
}



