.div_search {
    position: absolute;
    top: 0px;
    left: 10px;
}

.div_before_table {
    display: block;
    position: absolute;
    left: 0;
    margin-top: 25px;
}

.csvOverview {
    margin-top: 20px;
}

.cssOverviewContainer {
    overflow: auto;
    height: 90vh;
}


table {
    width: 100%;
    height: 400px;
    border-collapse: collapse;
}

tr:nth-of-type(odd) {
    background: #eee;
}

th {
    position: sticky;
    top: 0;
    background: #3498db;
    color: white;
    font-weight: bold;
}

td, th {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 12px;
}

.invoiceOption {
    position: relative;
    bottom: 0;
}

.csvTable {
    display: block;
    height: 90vh;
    overflow-x: hidden;
}


@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    table {
        width: 100%;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

        thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    tr {
        border: 1px solid #ccc;
    }

    td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
    }

        td:before {
            position: absolute;
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            content: attr(data-column);
            color: #000;
            font-weight: bold;
        }

    .invoicerow {
        padding-left: 50%;
    }

    .csvTable {
        padding-top: 47px;
        padding-left: 50px;
    }

    .facturebuttonsdiv {
        margin-left: 50px;
    }
}

.active .text-muted {
    color: white !important;
}