/* --- COLUMN RESIZER STYLES --- */
.column-resizer {
    position: absolute;
    top: 0;
    right: -2px; /* Adjusted to be slightly outside the border */
    width: 4px; /* Default width */
    height: 100%;
    background-color: transparent; /* No color by default */
    z-index: 2;
    cursor: ew-resize;
    transition: background-color 0.2s ease-in-out;
}

.column-resizer:hover, .column-resizer.active {
    background-color: #067a3c; /* Green color on hover and active state */
    width: 6px; /* Wider for easier grabbing */
    right: -3px; /* Adjust position to stay centered */
}
