
    .sortable {
        transition: background-color 0.15s ease-in-out;
        border-radius: 4px;
        cursor: pointer;
        user-select: none;
    }

    .sortable:hover {
        background: #e0f2fe;
    }

    .sortable.active {
        border-bottom: 2px solid #e0f2fe;
        background-color: #e0f2fe;
        font-weight: 600;
    }

    .sort-icon {
        font-size: 0.75rem;
        margin-left: 4px;
        opacity: 0.6;
    }

