/* Multi-line content (Support Tickets table) */
.content-snippet-3line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
    font-size: 0.875rem;
}

.content-snippet-2line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
    font-size: 0.875rem;
}

/* Column resize handles (jquery-resizable-columns) */
table.rc-table > thead > tr > th {
    position: relative;
    overflow: hidden;
}

table.rc-table > thead > tr > th .rc-handle {
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 100%;
    cursor: col-resize;
    z-index: 2;
}

table.rc-table > thead > tr > th .rc-handle:hover {
    background-color: rgba(13, 110, 253, 0.25);
}

table.table-resizable,
table[data-resizable="true"] {
    table-layout: fixed;
    width: 100%;
}

table.table-resizable td,
table[data-resizable="true"] td {
    overflow: hidden;
    vertical-align: middle;
}
