.form-group {
    margin-bottom: .5rem;
}

.text-divider {
    line-height: 0;
    text-align: left;
}

.text-divider span {
    background-color: #17a2b8;
    padding: 0.2em 1em;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.text-divider:before {
    content: " ";
    display: block;
    border-top: 1px dashed #e3e3e3;
    border-bottom: 1px dashed #f7f7f7;
}

a.nav-link p {
    text-wrap: nowrap !important;
    overflow: hidden;
}

table.dataTable thead tr {
    background-color: #17a2b8;
    color: #fff
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff !important;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: rgb(17 162 184 / 5%);
}

select.form-control-sm ~ .select2-container--default {
    font-size: 90%;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px
}

.breadcrumb.nav-asset .breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
    content: ">";
}

[class*=sidebar-light-] .nav-sidebar > .nav-item > .nav-link.active {
    box-shadow: none;
}

/* Datatable */
.action-btn {
    padding: 0.3rem .7rem; /* Adjust padding as needed */
    gap: 0.5rem; /* Adjust gap as needed */
    align-items: center;
    justify-content: center;
    height: 100%;
    display: flex;
    width: fit-content; /* Ensure all buttons have the same width */
    text-align: center;
    white-space: nowrap;
}

.dataTable thead th {
    text-align: center;
}

select[readonly].select2 + .select2-container {
    pointer-events: none;
    touch-action: none;

    .select2-selection {
        background: #eee;
        box-shadow: none;
    }

    .select2-selection__arrow,
    .select2-selection__clear {
        display: none;
    }
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin: 3px;
}

.select2-container--default .select2-search--inline .select2-search__field {
    margin: 0;
    max-height: 1em;
    padding: calc(1em - 2px);
}

.select2-container {
    min-width: 100%;
    max-width: 100%;
    border: 1px solid #aaa;
    border-radius: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-selection--multiple {
    border: none;
}

.select2-container .select2-selection--multiple .select2-selection__choice {
    color: black !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    color: black !important;
}

/* OPS Print Feature */

.signature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px; /* Adjust the gap as needed */
    height: 200px; /* Ensure the height is consistent */
}

.signature-cell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 0;
}

@media print {
    body * {
        visibility: hidden;
    }

    #printableTable, #printableTable * {
        visibility: visible;
    }

    #printableTable {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}
