:root {
    --bs-body-bg: #f8f9fa;
    --primary-color-dark: #6CD047;
    --input-border-color: #2f8c0e;

}


    .truncate {
        max-width: 200px; /* Set the desired width */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.bg-success{
    background-color: #a3e88a!important;
}

.bg-danger{
    background-color: #ff5858!important;
    color: white!important;
}


/* html, div, *, body, header, table tr th, input, select option, .nav, .bg-white, .bg-primary, .header  {
    background-color: black!important;
    color: white!important;
} */

.noborder{
    border: none!important;
    padding:0;
}

.inactive {
    color: #ff5858 !important;
}


.ol {
    border-left: 2px solid black !important;
}

.ot {
    border-top: 2px solid black !important;
}

.or {
    border-right: 2px solid black !important;
}

.ob {
    border-bottom: 2px solid black !important;
}


a {
    color: #46B4FF !important;
}

a.dark-link {
    background-color: #282828 !important;
}

.bold {
    font-weight: bold !important;
}

th {
    cursor: default;
}

h2 {
    font-size: 1.75rem;
    font-weight: 500;
}

h5 {
    font-size: 1.10rem;
    font-weight: 500;
}

input,
select,
textarea {
    border: var(--input-border-color) 1px solid !important;
}


input[type=date] {
    width: 200px;
}


.italic {
    font-style: italic;
}

.bg-primary {
    background-color:var(--primary-color-dark) !important;
    color: white !important;
}

.text-primary {
    color: #46B4FF !important;
}

.blue tr td{
    border: 1px solid #05009b!important;
}
.bg-blue {
    background-color: #00799b !important;
    color: #ffffff !important;
}

input[type="text"]:read-only, input[type="email"]:read-only, textarea:read-only {
    background-color: #e5e5e5;
}

input[type="checkbox"]:checked {
    color: black !important;
}

.border-primary {
    border-color: #3299c2 !important;
}


.btn{
    border: 1px solid #0093dc;
    box-shadow: #888 1px 1px 1px;
    box-shadow: #ccc 2px 2px 2px;
}
.btn:hover{
    border: 1px solid var(--primary-color-dark);
    box-shadow: #888 2px 2px 2px;
}
.btn:active{
    box-shadow: #111 0px 0px 0px;
}


.btn-primary {
    background-color: #46B4FF !important;
    border-color: #1578bb !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--primary-color-dark)!important;
    color: white !important;
}

.btn-purple{
    background-color: #6f42c1 !important;
    border-color: #6f42c1 !important;
    color: white !important;
}

.btn-outline-primary {
    color: #328dc2 !important;
    border-color: #1673b1 !important;
}

.btn-outline-primary:hover {
    background-color: #32a8c2 !important;
    color: white !important;
}

.btn-link {
    text-decoration: none;
    margin-left: 5px;
}

.btn-link:hover {
    border-color: #32acc2 !important;
}

.nav-link {
    color: #ccc !important;
}

.nav-link:hover {
    color: #000 !important;
}

.lead {
    font-size: 1.90rem;
    font-weight: 300;
}


.table-primary {
    --bs-table-bg: none;
    --bs-table-color: none;
    background-color: var(--primary-color-dark) !important;
    color: white !important;

}

.table th,
.table td {
    padding: 2px 5px;
}


.table a,
.table .btn {
    /* background-color: #3282C2; */
    color: white !important;
    text-decoration: none;
    padding: 2px 5px;
    border-radius: 5px;

}


.form-inline {
    border-radius: 5px;
    padding: 2px 5px;
}



/* CSS Print */
@media print {

@page {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    /* size: letter; */

}

    #header,
    #footer,
    .btn,
    button,
    .dev,
    .br_a, hr {
        display: none;
    }

    html{
        width: 100%!important;
        margin: 0!important;
        padding: 0!important;
        font-size: 12px;
    }

    input,
    select {
        border: none !important;
        padding: 0 !important;
    }

    h1.lead {
        font-size: 1.5em;
    }

    table {
        page-break-inside: auto;


    }

    tr,
    .ot {
        break-inside: avoid;
        page-break-inside: avoid;
    }

    /* Ensure the row with class 'ob' breaks after it, but before the next row */
    tbody {
        page-break-inside: avoid;
    }

    .print-hidden {
        display: none!important;
    }


}