
.drag-handle {
    cursor: grab !important;
}
.drag-handle:active {
    cursor: grabbing !important;
}
.drag-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f1f5f9;
    transition: all 0.3s ease;
}
.drag-icon {
    color: #64748b;
}
.drag-handle:hover .drag-icon-wrapper {
    background: #009ef7;
    transform: scale(1.1);
}
.drag-handle:hover .drag-icon {
    color: #ffffff;
}
/* Row Dragging State */
tr.dragging {
    opacity: 0.5;
}
.sortable-helper {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 2px #009ef7;
    border-radius: 8px;
}
.ui-sortable-placeholder {
    background: #f1f9ff !important;
    border: 2px dashed #009ef7 !important;
    visibility: visible !important;
    border-radius: 8px;
}
/* Banner Preview Styling */
.banner-preview {
    width: 100% !important; 
    max-width: 120px !important; 
    height: 60px !important;
    object-fit: cover !important;
}
.banner-preview-wrapper {
    max-width: 120px; 
    width: 100%;
}
/* TableDnD drag-to-reorder */
.tDnD_whileDrag td {
    background-color: #e8f4fd !important;
    color: #009ef7 !important;
    font-weight: 600;
    opacity: 0.85;
    box-shadow: 0 4px 12px rgba(0, 158, 247, 0.2);
}
