table.posts th.manage-column .custom-meta-column {
    display: flex;
    flex-direction: row;
    justify-content: left;
    row-gap: 0.25rem;
}

table.posts th.manage-column:hover .custom-meta-column .sorting-indicator {
    visibility: unset;
}

table.posts th.manage-column:hover .custom-meta-column .sorting-indicator::before {
    font: normal 20px/1 dashicons;
    display: inline-block;
    padding: 0;
    top: -4px;
    left: -8px;
    line-height: 0.5;
    position: relative;
    vertical-align: top;
    -webkit-font-smoothing: antialiased;
    text-decoration: none !important;
    color: #3c434a;
}

table.posts th.manage-column:hover .custom-meta-column .sorting-indicator.asc::before {
    content: "\f142";
}

table.posts th.manage-column:hover .custom-meta-column .sorting-indicator.desc::before {
    content: "\f140";
}

th[id*='_bulkedit'],
th[class*='_bulkedit'],
td[class*='_bulkedit'] {
    display: none !important;
}

th[id*='_quickedit'],
th[class*='_quickedit'],
td[class*='_quickedit'] {
    display: none !important;
}

table.fixed {
    table-layout: auto !important;
}

@media screen and (max-width: 782px) {
    th {
        width: unset !important;
    }
    
    .wp-list-table .is-expanded td:not(.hidden)[class*='_bulkedit'] {
        display: none !important;
    }
    
    .wp-list-table .is-expanded td:not(.hidden)[class*='_quickedit'] {
        display: none !important;
    }
}