.dt-global {
    width: 100% !important;
}

.dt-global thead th,
.dt-global tbody td {
    white-space: nowrap;
}

.dt-global.dt-align-center thead th,
.dt-global.dt-align-center tbody td {
    text-align: left;
    vertical-align: middle;
}

.dt-global .dt-align-left {
    text-align: left !important;
}

.dt-global .dt-align-right {
    text-align: right !important;
}

.dt-global thead th {
    position: relative;
    overflow: visible;
    background-color: #f8fafc;
}

.dt-global tbody td {
    overflow: visible;
    text-overflow: clip;
    max-width: none;
}

.dt-global .dt-resize-handle {
    position: absolute;
    top: 0;
    right: -2px;
    width: 8px;
    height: 100%;
    cursor: col-resize;
    z-index: 3;
}

.dt-global .dt-resize-handle::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 26%;
    width: 2px;
    height: 48%;
    border-radius: 999px;
    background-color: #d4dbe6;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dt-global thead th:hover .dt-resize-handle::after,
.dt-global.dt-resizing .dt-resize-handle::after {
    opacity: 1;
}

.dt-global .dt-actions-col,
.dt-global .dt-actions-col * {
    overflow: visible;
    text-overflow: clip;
}
