input[type=search]{
    border: 1px solid #dddddd !important;
    border-radius: 0 !important;
}

.dataTables_length select{
    border: 1px solid #dddddd !important;
    border-radius: 0 !important;
}

.paginate_button.current,.paginate_button.current:hover{
    background: white !important;
    border-radius: 0 !important;
    border: 2px solid #2a2a2a !important;
}

.dataTables_paginate.paginate_button {
    border-radius: 0 !important;
}

.paginate_button:hover {
    border: 1px solid #2a2a2a !important;
    background: #2a2a2a !important;
    border-radius: 0 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    cursor: default;
    color: #666 !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* DataTables Pagination größer */
div.dt-container .dt-paging .dt-paging-button.disabled,
div.dt-container .dt-paging .dt-paging-button.disabled:hover,
div.dt-container .dt-paging .dt-paging-button.disabled:active {
    font-size: 1.5rem;       /* größerer Text */
    padding: 0.35rem 0.7rem;
    margin: 0 2px;
    min-width: 2.2rem;     /* damit die Buttons nicht so schmal sind */
    line-height: 1.2;
}

/*---------------------*/
/*----Mobile Tables----*/
/*---------------------*/

/*
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px),
(min-device-width: 418px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        /* border: 1px solid #ccc; */
        margin-bottom: 10px;
    }

    td {
        /* Behave  like a "row" */
        border: none;
        /* border-bottom: 1px solid #eee; */
        position: relative;
        padding-left: 50%;
    }

    td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }
}

@media only screen and (max-width: 1025),
(min-device-width: 1025px) {
    largetable {
        border-collapse: collapse
    }

    .largetable {
        width: 100%;
        margin-bottom: 1rem;
        color: #212529
    }
}