:host, :root {
    --tblr-primary: #005e39 !important;
    --tblr-primary-rgb: 0,88,107 !important;
    --tblr-primary-darken: #70aB37 !important;
    --tblr-link-color: #005e39;
    --tblr-link-color-rgb: 0,88,107;
    --tblr-link-hover-color: #e28710;
    --tblr-link-hover-color-rgb: 226,135,16;
    --tblr-link-hover-decoration: underline;
    --tblr-font-sans-serif: Roboto, "Inter Var", Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
}

@media not print {
    .theme-dark {
        --tblr-primary: #00677d !important;
        --tblr-primary-rgb: 0, 88, 107 !important; /* #0084a0 10% */
        --tblr-link-color: #005e39 !important;
        --tblr-link-hover-color: #0084a0 !important;
        --tblr-light-fg: #f8fafc !important;
        --tblr-body-color: #f8fafc !important;
    }
}

@media not print {
    @media (prefers-color-scheme: dark) {
        .theme-dark-auto {
            --tblr-link-color: #0093B2 !important;
            --tblr-link-hover-color: #0084a0 !important;
        }
    }
}

.bg-doa-green-lt {
    --tblr-bg-opacity: 1;
    --tblr-text-opacity: 1;
    color: rgba(var(--tblr-primary-rgb), var(--tblr-text-opacity)) !important;
    background-color: rgba(var(--tblr-green-lt-rgb), var(--tblr-bg-opacity)) !important;
}

.text-doa-green {
    --tblr-text-opacity: 1;
    color: var(--tblr-primary) !important;
}

html {
    font-size: 14px;   
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.page-title {
    margin: 0;
    font-size: var(--tblr-font-size-h2);
    line-height: var(--tblr-line-height-h2);
    font-weight: var(--tblr-font-weight-headings);
    color: var(--tblr-primary);
    display: flex;
    align-items: center
}

/*temporary until dropdown z-index is fixed*/
.table-responsive {
    padding-bottom: 75px !important;
}
/*Paging*/


.pagination {
    display: inline-block;
    padding-left: 0;
    /*margin: 20px 0;*/
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.428571429;
            text-decoration: none;
            background-color: var(--tblr-bg-surface);
            border: 1px solid var(--tblr-card-border-color);
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-bottom-left-radius: 4px;
            border-top-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            background-color: #eeeeee;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 2;
        color: #ffffff;
        cursor: default;
        background-color: var(--tblr-primary);
        border-color: var(--tblr-primary);
    }

    .pagination > .disabled > span,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #999999;
        cursor: not-allowed;
        background-color: #ffffff;
        border-color: #dddddd;
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

    .pager:before,
    .pager:after {
        display: table;
        content: " ";
    }

    .pager:after {
        clear: both;
    }

    .pager:before,
    .pager:after {
        display: table;
        content: " ";
    }

    .pager:after {
        clear: both;
    }

    .pager li {
        display: inline;
    }

        .pager li > a,
        .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #ffffff;
            border: 1px solid #dddddd;
            border-radius: 15px;
        }

            .pager li > a:hover,
            .pager li > a:focus {
                text-decoration: none;
                background-color: #eeeeee;
            }

    .pager .next > a,
    .pager .next > span {
        float: right;
    }

    .pager .previous > a,
    .pager .previous > span {
        float: left;
    }

    .pager .disabled > a,
    .pager .disabled > a:hover,
    .pager .disabled > a:focus,
    .pager .disabled > span {
        color: #999999;
        cursor: not-allowed;
        background-color: #ffffff;
    }

/* disabled style on detail pages */
.select2-container--bootstrap-5.select2-container--disabled .select2-selection, .select2-container--bootstrap-5.select2-container--disabled.select2-container--focus .select2-selection {
    color: #6c757d;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ced4da;
    box-shadow: none;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
    color: var(--tblr-light-fg) !important;
}

.select2-container--bootstrap-5 .select2-selection {
    background-color: var(--tblr-bg-forms) !important;
    border-color: var(--tblr-border-color) !important;
    color: var(--tblr-primary-fg) !important;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    padding: 0;
    font-weight: 400;
    line-height: 1.5;
    color: var(--tblr-light-fg) !important;
}

.select2-container--bootstrap-5 .select2-results__option--selected {
    color: #ffffff;
    background: #005e39 !important;
}
