.mod_pgeneric .new-icon {
    color: #fff;
    background-color: #ef5350;
    padding: 2px 8px;
    border-radius: 4px;
}

.mod_pgeneric .like-button img {
    width: 24px;
    height: 24px;
}

.mod_pgeneric .like-button {
    border: 1px solid #aaa;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.mod_pgeneric .like-button.like-action-on {
    background-color: rgba(0, 176, 233, 0.2);
}

.mod_pgeneric .like-count {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
}

@media screen and (max-width: 568px) {
    .mod_pgeneric .table-container {
        overflow-x: scroll;
    }

    .mod_pgeneric .table-case {
        width: 1000px;
    }
}

.mod_pgeneric .table-case th {
    border-top: 1px solid #dddddd !important;
    background: rgba(0, 176, 233, 0.4);
    padding-right: 20px;
}

.mod_pgeneric .table-case th,
.mod_pgeneric .table-case td {
    font-size: 12px;
}

.tablesorter th {
    position: relative;
    cursor: pointer;
    text-align: left;
}

.tablesorter th::before, .tablesorter th::after {
    content: '';
    position: absolute;
    z-index: 2;
    right: 7px;
    width: 0;
    height: 0;
    border: 4px dashed;
    border-color: #333 transparent;
    pointer-events: none;
}

.tablesorter th::before {
    border-bottom-style: solid;
    border-top: none;
    top: 30%;
}

.tablesorter th::after {
    border-top-style: solid;
    border-bottom: none;
    bottom: 30%;
}

.tablesorter th.tablesorter-headerAsc:after {
    border: none;
}

.tablesorter th.tablesorter-headerAsc:before {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.tablesorter th.tablesorter-headerDesc:before {
    border: none;
}

.tablesorter th.tablesorter-headerDesc:after {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.tablesorter th.sorter-false:before, .tablesorter th.sorter-false:after {
    border: none;
}