.tabelPCS thead, .tabelPCS tbody { display: block; width:100%; }
.tabelPCS { width:100% !important; margin-top:20px;text-align:center; }
.tabelPCS thead{ background:#1f446e !important; color: #fff; }
.tabelPCS thead td{ font-weight:bold !important; }
.tabelPCS tbody {
    max-height: 400px;       /* Just for the demo          */
    overflow-y: auto;    /* Trigger vertical scroll    */
    overflow-x: hidden;  /* Hide the horizontal scroll */
}

.tabelPCS tr {
    width: 100% !important;
    display: table;
    table-layout: fixed;
}
.tabelPCS tr td:first-child {
    padding:5px;
}
.tabelPCS td:nth-child(2) {
    width: 70% !important;
    padding:5px;
}
.tabelPCS tbody tr:hover{ background-color: #FF9241 !important; color:#fff;font-weight:bold;}
.tabelPCS tbody tr:nth-child(2n) {background: #CCC}

