.scrollable-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-collapse: separate;
    border-radius: 10px !important;
    border: 1px solid #E0E0E0;
    overflow: hidden;
}

.scrollable-table thead th {
    color: black;
    font-weight: 500;
    font-size: 14px;
    background-color: #F7F6FB;
    position: sticky;
    top: 0;
    /* Keeps header visible */
    z-index: 2;
    align-content: center;
    height: 62px;
    padding-left: 37px !important;
}

.scrollable-table thead th:first-child {
    border-top-left-radius: 10px !important;
}

.scrollable-table thead th:last-child {
    border-top-right-radius: 10px !important;
}

.scrollable-table tbody {
    display: block;
    overflow-y: auto;
    color: #6B6B6B;
    flex: 1 1 auto;
}

.scrollable-table thead,
.scrollable-table tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
    /* Ensures columns align */
}

.scrollable-table tbody tr td {
    padding-left: 37px;
}

.scrollable-table input {
    border-radius: 4px !important;
    height: 35px;
}

.scrollable-table div.input-group:has(.datepicker-button) {
    width: fit-content;
}

.scrollable-table div.input-group:has(.datepicker-button) > input {
    width: 100% !important;
	max-width: 136px;
	min-width: 120px;
    padding: 6px 29px 6px 15px !important;
}

.scrollable-table div.input-group > .datepicker-button {
    position: absolute;
    right: 0px;
    top: 3px;
    background: none !important;
	padding-top: 4px;
}

.scrollable-table div.input-group .datepicker-button .datepicker-calendar-icon {
	width: 22px;
	height: 22px;
}

.datepicker-overlay{
    display: none !important;
}

.datepicker-weekdays {
    display: none !important;
}