.content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: 3em;
    flex-wrap: wrap;
}

.selectForm {
    display: flex;
    flex-direction: row;
    padding-top: 2vh;
    padding-left: 5vw;
    gap: 1vw;
    align-items: center;
    padding-bottom: 2vh;
    flex-wrap: wrap;
}

.selectForm input,
.selectForm select,
.selectForm button {
    height: 5vh;
    cursor: pointer;
}

.table-wrapper {
    max-height: 88vh;
    overflow-y: auto;
    margin-top: 20px;
}

.dataTables,
.dataTables table {
    width: 100%;
    border-collapse: collapse;
}

.dataTables thead,
.dataTables table thead{
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #f2f2f2;
}

.dataTables tr:focus-within {
    background-color: lightblue !important;
}

.dataTables td:first-child,
.dataTables th:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
}

.download-excel-button {
    height: 5vh;
}