/**
 * Dashboard Column Resize Styles
 * @version 3.6.0
 */

.ir-col-resizable {
    position: relative;
}

.ir-col-resize-handle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: #0073aa;
    opacity: 0.5;
    cursor: col-resize;
    z-index: 100;
}

.ir-col-resize-handle:hover {
    opacity: 0.8;
}

.ir-col-resize-handle.active {
    opacity: 1;
}

body.ir-col-resizing {
    cursor: col-resize !important;
    user-select: none !important;
}

body.ir-col-resizing * {
    cursor: col-resize !important;
}

.ir-col-reset-icon {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #666;
    cursor: pointer;
    opacity: 0.5;
    margin-left: 8px;
}

.ir-col-reset-icon:hover {
    opacity: 1;
    color: #0073aa;
}

.ir-col-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #00a32a;
    color: #fff;
    padding: 10px 16px;
    border-radius: 4px;
    z-index: 100000;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s;
    font-size: 13px;
}

.ir-col-toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .ir-col-resize-handle,
    .ir-col-reset-icon {
        display: none;
    }
}
