.content-table {
    width:100%;    
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
    background-color:#56B501;
    color:#ffffff;
    text-align:left;
    font-weight:bold;
}

.content-table th,.content-table td {padding:12px 15px;text-align:center;}
.content-table tbody tr {border-bottom: 1px solid#dddddd;cursor:pointer;}
.content-table tbody tr:hover {color: #56B501;}
.content-table tbody tr:nth-of-type(even) {background-color:#f3f3f3;}
.content-table tbody tr:last-of-type {border-bottom:2px solid #56B501;}         /*#009879;}*/
.content-table tbody tr.active-row {font-weight:bold;color: #56B501;}

@media only screen and (max-width:600px){
    th{display:none;}
    td{display:grid;gap:0.5rem;grid-template-columns:15ch auto;padding:0.5rem 1rem;}  

    table{text-align:left;}
    td::before{font-weight:700;text-transform:capitalize;}
    td:nth-of-type(2)::before{content: "Hersteller ";}
    td:nth-of-type(3)::before{content: "Leistung ";}
    td:nth-of-type(4)::before{content: "Garantie ";}
    td:nth-of-type(5)::before{content: "Effizienz ";}

}



