.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    width: 300px;
}

.feature-item.dragging {
    opacity: 0.5;
    border: 2px dashed #28a745;
    background: #f0fdf4;
}

.feature-item > .drag-handle{
    border-radius: 100%;
}

.feature-name {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 500;
}

.feature-actions {
    display: flex;
    gap: 8px;
}