
.dropdown-submenu>a::after {
    border-top: .3em solid transparent;
    border-right: .3em solid !important;
    border-bottom: .3em solid transparent;
    border-left: 0 !important;
    float: left !important;
    margin-left: .5rem;
    margin-top: .5rem;
}

.dropdown-submenu>.dropdown-menu {
    right: 100% !important;
    margin-left: 0;
    margin-top: 0;
    top: 0;
}

@media print {
    thead {
        display: table-header-group;
    }
    .print-hidden {
        display: none;
    }
}

.table-container {
    position: relative;
    overflow: auto;
    height: 300px; /* Set the desired height of the table */
}

/* Style the table header */
.table-container thead {
    position: sticky;
    top: 0;
    background-color: #f5f5f5; /* Set the desired background color */
    font-weight: bold;
}


th,
td {
    padding: 8px;
    border: 1px solid #000;
}
/* Page break before the table */
@media print {
    table {
        page-break-before: always;
    }
}
