.custom-list-container {
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
}

.list-header {
    text-align: right;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    width: 100%;
}

.item-list li {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: #e1e1e1;
    border-radius: 15px;
    font-size: 14px;
}

.delete-btn {
    background: none;
    border: none;
    color: #ff4d4f;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}